PHP、MYSQL、JQueryを使用して2つのレベルのドロップダウン選択ボックスを作成しています。すべて問題ないように見えますが、親カテゴリに子がない場合、または子を選択しない場合、エラーが発生し、このエラーの意味と解決方法がわかりません。私はあなたにみんなの助けが必要です。
エラー:
Notice: Undefined index: f_child_cat in C:\xampp\htdocs\pathtofile\index.php on line 58
You selected 12 & You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
これが私のフロントエンドコードです
<?php if(isset($_POST['submit'])){
$drop = $_POST['first_child_cat'];
$f_child_cat = $_POST['f_child_cat'];
echo "You selected ";
echo $drop." & ".$f_child_cat;
$query = mysql_query("SELECT * FROM qa_categories WHERE parentid = $f_child_cat")
or die(mysql_error());
echo '<ul>';
while($cats = mysql_fetch_array( $query ))
echo '<li>',$cats['title'],'</li>';
echo '</ul>';
}
?>