HTML form not working with image submit button?

前端 未结 3 1417
余生分开走
余生分开走 2021-01-27 05:53

I have the following html form i am testing out.





         


        
3条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-27 06:12

    When using a input type="image", the browser sends submit_x and submit_y.

    So in PHP, $_POST['submit'] will not be available, but $_POST['submit_x'] and $_POST['submit_y'] will be defined (containing the X/Y coordinates where the image was clicked on).

提交回复
热议问题