php的image submit 若有給變數名稱
<form action="" method="post" name="myform"><br /><input src="/manage/article/ooxx.gif" name="image_submit" border="0" height="19" type="image" width="74" /></form><form></form>
<p>則送出表單後 會得到你按下去時的x y 座標 的變數 $image_submit_x 與 $image_submit_y</p>
<p>若沒給變數名稱</p>
<p>例:</p>
<form action="" method="post" name="myform"><br /><input src="/manage/article/ooxx.gif" border="0" height="19" type="image" width="74" /></form>
<p>則送出表單後 會得到你按下去時的x y 座標 的變數 $x 與 $y</p>