我有两种形式(登录/登录)
登录:
<form action="#" method="post">
<input type="text" size="25" name="fname" placeholder="First Name" value="<?php echo $fn; ?>"/>
<input type="text" size="25" name="lname" placeholder="Last Name" value="<?php echo $ln; ?>"/>
<input type="text" size="25" name="username" placeholder="Username" value="<?php echo $un; ?>"/>
<input type="text" size="25" name="email" placeholder="Email" value="<?php echo $em; ?>">
<input type="text" size="25" name="email2" placeholder="Repeat Email" value="<?php echo $em2; ?>"/>
<input type="password" size="32" name="password" placeholder="Password"/>
<input type="password" size="32" name="password2" placeholder="Repeat Password"/><br />
<input type="submit" name="reg" value="Sign Up!"/>
</form>
登入:
<form>
<center><input type ="text" size="25" name="User_login" id="user_login" placeholder="username"/>
<input type ="password" size="25" name="user_password" id="user_password" placeholder="password"/><br />
<input type ="submit" name="button" id="button" value="login to your account!"/></center>
</form>
按下任一表单上的登录按钮或登录按钮后,我将被引导回到同一页面(这是我想要的),但这是我的地址栏中显示的内容:
http:// localhost/sites/socialnetwork/User_login=&user_password=&button=login+to+your+account%21#
我想要的是http:// localhost /sites/socialnetwork/#
在地址栏中输入时http:// localhost/ sites/ socialnetwork/
,页面会完美显示,但是一旦我单击登录按钮..etc,它就会转到第一个链接。
两个链接都显示相同的页面,但我如何使它不显示
User_login=&user_password=&button
等等
有任何想法吗?