2017-05-27 192 views
0

我不是用PHP丝毫经历,但这种形式应该从页面发送信息,你选择它的另一页:为什么不将此表单数据发送到下一页?

<form name="form1" method="post" action="nextpage.php"> 
    <select name="form"> 
    <option value="bike">BMX 3000</option> 
    </select> 
    <input type="submit"> 
</form> 

下一个页面有验证码:

<html> 
    <body> 
     <center>You selected <?php echo $_POST['form']; ?></center> 
    </body> 
</html> 

会喜欢一些帮助!

+0

只''