大家好,我已经制作了一个脚本,有一些帮助,可以浏览一个类别 示例:我们有下一个类别PCgames,All和Documents。 X用户正在PCgames中搜索Y游戏。这个剧本在PC游戏中为Y游戏进行了创作,并显示了所有结果。 但是当用户点击搜索按钮时服务器显示下一个错误注意:未定义的索引:第5行的search.php中的类别 HTML代码
<form action="search.php" method="POST">
<p><br />
<input name="q" type="hidden" />
<font color="black">Hunt Data:</font>
<input type="text" style="width: 180px" name="qfront" id="name" />
<select name="category">
<option value="0" id="all">All</option>
<option value="1" id="PCgames">PC-Games</option>
<option value="2" id="Console">Console</option>
<option value="3" id="Movies">Movies</option>
<option value="4" id="Music">Music</option>
<option value="5" id="XXX">XXX</option>
<option value="6" id="Windows">Windows</option>
<option value="7" id="Linux">Linux</option>
<option value="8" id="Software">Software</option>
<option value="9" id="Documents">Documents</option>
</select>
<input type="submit" value="Search" />
</p>
</form>
search.php文件
<?php
//define each directory here, the index starts with 0 == all and so on.
$categorydir = array('/Category/All/', '/Category/PCGames/', '/Category/Documents/');
//if option selected and its valid number
if($_POST['category'] && ctype_digit($_POST['category'])){ //line 5
if(array_key_exists($_POST['category'], $categorydir) && is_dir($categorydir[$_POST['category']])){
$handle = opendir($categorydir[$_POST['category']]);
}else{
echo 'target directory not found';
}
}else{
//please enter an option
}
?>
一些帮助注意:未定义的索引:第5行的search.php中的类别?
答案 0 :(得分:0)
if(isset($_POST['category']) {
if(ctype_digit($_POST['category']) && isset($categorydir[$_POST['category']])){
}
}
和你的数组
$categorydir = array('/Category/All/', '/Category/PCGames/', '/Category/Documents/');
有3个条目,但你的表格有10只猫。