Hi
I have a map, with the diffferent areas linking to their own tables. But all the code is in one page called index.php. So I have some php code that uses cases to distinguish between the tables. So if you click on NOrth America then case 1 is processed. see below for index.php?r=1.
What I now want is a link that will show all the tables as well.
So user clicks on 'show all events', and then r=1, 2, 3 and 4 are processed and the tables should all appear in the page.
I can't get it to work. See my code at the bottom, at the moment I have
<a href="index.php?r=1,2">
But this isn't working, only r=1 is shown, I'm sure this is an easy fix, my brain is just not with it today!!!
Thanks for your help.![Smile :) :)](data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)
I have a map, with the diffferent areas linking to their own tables. But all the code is in one page called index.php. So I have some php code that uses cases to distinguish between the tables. So if you click on NOrth America then case 1 is processed. see below for index.php?r=1.
What I now want is a link that will show all the tables as well.
So user clicks on 'show all events', and then r=1, 2, 3 and 4 are processed and the tables should all appear in the page.
I can't get it to work. See my code at the bottom, at the moment I have
<a href="index.php?r=1,2">
But this isn't working, only r=1 is shown, I'm sure this is an easy fix, my brain is just not with it today!!!
Thanks for your help.
Code:
<img name="mapImg" src="../images/pageImages/products/worldMap.gif" alt="" width="480" height="244" border="0" usemap="#Map">
<map name="Map">
<area href="index.php?r=1" onMouseOver="rollMap(1)" onMouseOut="MM_swapImgRestore()" alt="Europe" shape="poly" coords="223,56,214,66,223,68,228,81,217,83,216,91,220,94,231,86,240,85,246,91,274,93,282,76,273,48,279,44,264,37,246,44,238,55">
<area href="index.php?r=2" onMouseOver="rollMap(2)" onMouseOut="MM_swapImgRestore()" alt="Americas" shape="poly" coords="175,57,180,46,203,40,214,22,173,20,144,22,118,22,70,28,66,40,12,40,15,67,48,58,68,94,130,174,123,210,137,241,164,203,190,157,153,117,128,98,134,85,162,76">
<area href="index.php?r=4" onMouseOver="rollMap(3)" onMouseOut="MM_swapImgRestore()" alt="Asia & Australasia" shape="poly" coords="282,46,297,40,288,21,314,21,327,35,356,29,345,22,361,22,379,33,399,35,412,29,438,39,471,45,444,54,401,98,385,102,384,114,393,142,428,152,427,163,464,209,435,224,374,204,346,112,333,138,320,109,304,93,283,82,275,51">
<area href="index.php?r=3" onMouseOver="rollMap(4)" onMouseOut="MM_swapImgRestore()" alt="Middle East & Africa" shape="poly" coords="204,111,221,96,238,90,266,97,284,84,314,108,295,126,295,185,254,201,236,150,213,139">
</map>
</center>
<p class="copySubHead">
<!-- **** SEE CODE BELOW **************** -->
<a href="index.php?r=1,2">See all events<img src="../images/redArrowOnWhite.gif" alt="" width="15" height="10" border="0" align="absmiddle"></a>