Quick PHP question
Quick PHP question
Out of context: Reply #24
- Started
- Last post
- 25 Responses
- acescence0
for really simple sites, you can use url rewriting via .htaccess to make all your nice clean urls and internally point it all to just one php file. for example..
site.com / section / page /
would all get pointed to the same php file, and you'd have your two vars:
$section =
$page =then you're not dealing with all kinds of files and directories.
- Would this be for sites that have dynamic content loaded into templates?JamesBoynton
- yes, that is one way to use themsurface