Hello, I'm looking for the ability to link to a new page without actually creating the file for it. In the toolbar it just shows something like this: page.php?page=1 I need it because i'm setting up a free website so users can download icons, so instead of me creating a new page for every single icon download displaying its information i can just add a new link if you understand what i require. Any help appreciated. Thank you
Why would you need MySQL? Just do: Code: <!-- Before Content HTML Here --> <?php if($_GET['page'] == 'something') { include_once('something.php'); } elseif($_GET['page]' == 'somethingelse') { include_once('somethingelse.php'); } else { include_once('default.php'); } ?> <!-- HTML After Content Here --> Code (markup): Just add more ifelse statements as needed. You'll still need to create a new file but you won't have to include anything but the content that is going to show up.
Since he doesnt want diffrent pages its better to use mysql..whats the point of making individual files and then using this format.. ?? its bad for seo and at the end u are having the same amount of files
Unfortunatly making a new file for every icon pack i add wouldn't be an option as there will be hundreds at some point in the future. MySQL is an option i'd need to take a look at further. Thanks for your help.