Hi Everyone,
How would I create unique meta tags per-page dynamically?
For example, if someone goes to the "Florida, Key West" page the meta tag description and keywords would have the words, Florida and Key West in them?
This is my thought process, in order for this to work I must have a unique identifier on each page. That unique ID reorganizes the ID and echoes out the accompanying state/city variables? Is that how this would work?
Thanks Everyone!
http://whatsmyowncarworth.com/class-work/sign3/metatags.php
$sql = mysql_query("SELECT * FROM states");
while($row = mysql_fetch_array($sql)){
$state = $row['State'];
$city = $row['City'];
echo "$state <br>";
echo "$city <br>";
echo '<hr/>';
}