我的表单中有以下代码:
<form action="mail.php" method="POST">
有没有办法添加另一个提交按钮并让 php 知道如果使用 button1 它将数据发送到mail.php而使用按钮 2 它将数据发送到mail2.php?
谢谢您的帮助
使用单选按钮的值并传递参数选项是正确的,例如:
<input type="radio" name="how" value="mail1" id="radio1"><label for="radio1">Name of parameter1</label>
<input type="radio" name="how" value="mail2" id="radio2"><label for="radio2">Name of parameter2</label>
在服务器上:
$mail = $_POST['how']==mail1?'mail1':'mail2';
include($mail.'.php');