カテゴリを検索するスクリプトを(助けを借りて)作成しました。例:次のカテゴリがあります:PCgames、Movies、Music。Xユーザーは、カテゴリPCgamesでYゲームを検索しています。検索スクリプトのほとんどの投稿の後、すべての結果を表示する必要がありますが、スクリプトは結果を表示しません。手助け?これがカテゴリを検索するphpスクリプトです
<?php
//define each directory here, the index starts with 0 == all and so on.
$categorydir = array('/Category/All/', '/Category/PCGames/', '/Category/Console/', '/Category/Movies/', '/Category/Music/', '/Category/XXX/', '/Category/Windows/', '/Category/Linux/', '/Category/Software/', '/Category/Documents/');
//if option selected and its valid number
if(isset($_POST['category']))
if(ctype_digit($_POST['category']) && isset($categorydir[$_POST['category']]))
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
}
?>