Was wondering if I could get a bit of help.
I have an image map that has 6 hotspots. Each hotspot goes to the same page but with a different variable. This works, but I am having trouble retrieving the variable once at the next page.
Here is the code for populating the variable:
<area shape=\"rect\" coords=\"109,0,182,72\" href=\"http://fakepagename.php?select=1\" alt=\"What\">
Here is the code at the next page that is causing me trouble.
if ($_GET['select']==1)
{
PageHeader();
print "Passing Variable Worked";
PageFooter():
}
else
Main();
Any help on what I am doing wrong would be great.