我有 2 个变量从 ajax 发送到 php 用户和电子邮件
if ($key=="user"){
//and sql will check if user name is exist or not
if($stmt->rowCount() >0); //if user is exist
echo"user is already exist";
if(!preg_match('/^[0-9A-Za-z!@#$%][0-9A-Za-z!@#$% ]+[0-9A-Za-z!@#$%]$/',$user));
echo"bad user name";
}
如何让它工作?我可能if
在大if
(也许)里面有更多的声明