注册页面:
$_SESSION['namex']=$_POST['username'];
$_SESSION['passx']=$_POST['pass'];
$_SESSION['confirmpassx']=$_POST['confirmpass'];
$_SESSION['emailx']=$_POST['email'];
$_SESSION['confirmemailx']=$_POST['email2'];
$_SESSION['keyx']=$_POST['byond'];
索引页
$namex=$_POST['username'];
$passx=$_POST['pass'];
$pass2x=$_POST['confirmpass'];
$emailx=$_POST['email'];
$email2x=$_POST['email2'];
$ByondKeyx=$_POST['byond'];
str_replace($namex,$_SESSION['namex'],$namex);
str_replace($passx,$_SESSION['passx'],$passx);
str_replace($pass2x,$_SESSION['confirmpassx'],$pass2x);
str_replace($emailx,$_SESSION['emailx'],$emailx);
str_replace($email2x,$_SESSION['confirmemailx'],$email2x);
str_replace($keyx,$_SESSION['keyx'],$keyx);
好的,所以这些代码应该做的是注册页面正在做它的事情(我认为)并且索引页面是一个页面,如果使用了用户名或密码或用户名无效,那么索引页面就会出现并使用与注册页面相同的数据制作另一个表格。抱歉,如果很难阅读/理解。如果您想查看我的网站并了解我的意思,请点击以下链接:http://snyp.freeoda.com
感谢您的阅读,请提供帮助。