Hye all,
Need little help here.. I need to load different table or layout that contain pictures and descriptions of 'em... So i've several links for each of different categories...
Example:
I've links of
so for each of these links i need to load different html table to display the pictures, description and prices.
<a href="#"><?php "Modem" ?></a>
<a href="#"><?php "Monitors" ?></a>
<a href="#"><?php "Notebook" ?></a>
basically above is the illustration of the coding and the logic goes like this:
<?php if($someVar=="Monitors")
echo ?>
<td>bla bla bla </>
<?php else echo ?>
<td>bla bla bla </td>
basically i plan to do it like the above illustration but i dont know how to assign the link clicked to the php variable...can i use onClick the javascript function to call the php function?...if can, then can someone show me the way...
Thank in advance....