Quote:
Originally Posted by Webmaster Advertising
Basically, i want to generate a list of URL to throw in a site map and have the page dynamically show whatever 'phrase' based on list1 and list2 the url contains.
|
Then you don't need a list. All you need to do is display whatever values are in the request on the page. Something like:
Code:
<?php
$color = $_GET['color'];
$animal = $_GET['animal'];
echo 'This page is about '.$color.' '.$animal;
?>
Would produce:
This page is about Red Dogs
When you visited:
yoursite.com/?color=Red&animal=Dogs
Edit: Obviously you'd need to perform sanitization to protect against malicious requests.