i am trying to generate an image map from the mouse coords of a click.
i can pass the X Y through ok as
$_POST['submit_x']
$_POST['submit_y']
how should the string be put into the AREA tag ?
i am keeping the diameter as 10
this is what i am trying:
echo "SHAPE=CIRC LE COORDS="'.$_POS T['submit_x'].',143,10">";
i can pass the X Y through ok as
$_POST['submit_x']
$_POST['submit_y']
how should the string be put into the AREA tag ?
i am keeping the diameter as 10
this is what i am trying:
echo "SHAPE=CIRC LE COORDS="'.$_POS T['submit_x'].',143,10">";
Comment