<form method="post">
<input type ="text" name="factorial"/>
<input type="submit">
</form>
<?php
$f = $_POST['factorial'];
// Evaluates to true because $var is empty
if (empty($f)) {
echo '$var is either 0, empty, or not set at all';
}
// Evaluates as true because $var is set
if (isset($f)) {
echo '$var is set even though it is empty';
}
?>
ใช้ empty เช็คเอา ไม่แน่ใจว่าใช่อย่างที่ต้องการไหม