嗨,我正在制作一个在提交表单时返回自身的 php 页面,但是 php 内部有一个案例,当它为 true 时,应该执行 header("Location: url") 函数。
有可能这样做吗?
<form action="" method="post">
<input type="text" name="username" value="" />
<?php
if (isset($_POST['submitted'])) {
$username = $_POST['username'];
$qryS="SELECT * FROM student WHERE ID='$username';";
$resultS=mysql_query($qryS);
if($resultS){
if(mysql_num_rows($resultS)>=1) {
header("location: studentprofile.php");
}}
else {
echo"<p><small> There was an error</p>";
}
}
?>
<input type="submit" name="submitted" value="Submit" /></p>
</form>