我的PHP沒有正確響應,這裏是我的HTML代碼我的代碼沒有響應,因爲我希望它是?
<html>
<body>
<form name="myform" method="post" action="lol.php">
<input type="text" name="man" value="">
<input type="submit" name="submit" value= "post">
</form>
</body>
</html>
這是我的PHP代碼
<?php
if ($_POST['man']= null)
{print ('has no value');}
else {print ($_POST['man']);
}
?>
它是如何響應? – 4444
你想如何迴應? – 3ventic
它沒有給出if和else的答案 –