だから私はindex.phpにフォームメソッドポストを持っています。そこでは、テキストボックスからprint.phpである別のページにデータを送信します。
今私がやりたいのは、index.php のテキスト ボックスが null の場合、print.php にリダイレクトされないか、print.php にリダイレクトされた場合、index.php にリダイレクトされることです。
index.php 形式
<form action="print.php" method="post" target="_blank">
<input type="text" name="faidf" id="faidf" size="25" value="" maxlength="25"/></td>
<input type ="submit" value="Print">
print.php
<?php
$faidf = $_POST['faidf'];
if(isset($_POST['faidf'])) {
echo "<td><font size=2>FAID:$faidf</td><td></font></td>";
}
else {
echo "FAID is missing";
}
?>
FAIDが欠落している代わりに、それをホームにリダイレクトできますか?