我的表单中包含以下代码:
<form action="mail.php" method="POST">
有没有办法添加另一个提交按钮让php知道如果使用button1它将数据发送到 mail.php ,而使用按钮2则将数据发送到 mail2.php ?
感谢您的帮助
答案 0 :(得分:0)
使用单选按钮的值,传递参数选项是正确的,如:
<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');