php converts the dots to the underscore char "_".
so ?ch.x=100&ch.y=150
would be available in php as $ch_x & $ch_y.
###################
<BODY>
<FORM>
<INPUT TYPE="image" NAME="test" SRC="/graphics/welcome.gif">
</FORM>
<?
echo $test_x,"<BR>\n";
echo $test_y,"<BR>\n";
?>
</BODY>