首页  >  文章  >  后端开发  >  PHP 表单传递参数与获取参数有关问题

PHP 表单传递参数与获取参数有关问题

WBOY
WBOY原创
2016-06-13 12:02:33858浏览

PHP 表单传递参数与获取参数问题

<html><br /><head><title>Register</title></head><br /><body><br />	<?php<br />	if (!isset($_POST['register1']) || ( $_POST['register1'] != 'Register'))<br />	{<br />			#echo "test1";<br />	?><br />	<h1>Registration</h1><br />	<form method = "post" action = "register.php"><br />		<table><br />			<tr><td>E-mail address:</td><br />				<td><input type='text' name = 'email'/></td><br />			</tr><br />			<tr><td>First Name:</td><br />				<td><input type = 'text' name = 'first_name'/></td><br />			</tr><br />			<tr><td>Last Name:</td><br />				<td><input type = 'text' name = 'last_name'/></td><br />			</tr><br />			<tr><td>PassWord:</td><br />				<td><input type = 'password' name = 'password'/></td><br />			</tr><br /><br />			<tr><br />				<td colspan = '2'><br />					<input type = 'submit' name = 'register1' value = 'Register'/><br />				</td><br />			</tr><br />		</table><br />	</form><br />	<?php<br />		}<br />		else<br />		{<br />	?><br />	E-mail:<br />	<?php <br />		echo $_POST['email']; <br />	?><br />	<br /><br />	Name:<br />	<?php <br />		echo $_POST['last_name']; <br />	?><br />	<br /><br />	Password:<br />	<?php <br />		echo $_POST['password']; <br />	?><br />	<?php<br />		}<br />	?><br /></body><br /></html>


初学 PHP 问个问题 在这里 获取
E-mail:
echo $_POST['email']; 
?>


Name:


Password:

这些信息时 只输出一个没问题 
当我输出多个的时候像这个样子的
E-mail:
echo $_POST['email']; 
?>


Name:
echo $_POST['last_name']; 
?>


Password:
echo $_POST['password']; 
?>
他就出错了 - -!!!
总是出现
An error occurred.

Sorry, the page you are looking for is currently unavailable.
Please try again later.

If you are the system administrator of this resource then you should check the error log for details.

Faithfully yours, nginx.
这个东西 只输出一个时就可以
各位大神请指教 
------解决方案--------------------

<br><title>Register</title><br><br>    <?php <br />    if (!isset($_POST['register1']) <br><font color="#FF8000">------解决方案--------------------</font><br> ( $_POST['register1'] != 'Register'))<br>    {<br>            #echo "test1";<br>    ?><br>    <h1>Registration</h1><br>    

        
            
                
            
            
                
            
            
                
            
            
                
            
 
            
                
E-mail address:
First Name:
Last Name:
PassWord:

                    
                
声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn