了解しました。ユーザーがアーティスト名、曲名、または都市から簡単に検索できるように、自分のWebサイト用に小さなPHP検索スクリプトをコーディングしようとしています。データベース内のテーブルには、「city」、「artist」、および「city」があります。
これが私のフォームです:
<div id="search">
<form name="search" method="post" action="../searchDb.php">
<input type="text" name="find" placeholder="What are we searching for ?"/> in
<Select NAME="field">
<Option VALUE="artist">Artist</option>
<Option VALUE="song">Song</option>
<Option VALUE="city">City</option>
</Select>
<input type="hidden" name="searching" value="yes" />
<input type="submit" name="search" value="Search" />
</form>
</div>
ご覧のとおり、3つのOPTION値があります(私のテーブルの各列に1つ)。これが私のPHPコードです:
<?php
$searching = "searching";
$find = "find";
$field = "field";
//this is to make sure the user entered content
if ($searching =="yes")
{
echo "<p><h2>Results</h2></p>";
//if user did not enter anything in the search box, give error
if ($find == "")
{
echo "<p>You forgot to enter a search term</p>";
}
include 'connect.php';
// strip whitespace, non case sensitive
$find = strtoupper($find);
$find = strip_tags($find);
$find = trim ($find);
//perform search in specified field
$data = mysql_query("SELECT * FROM artists_table WHERE upper($field) LIKE'%$find%'");
//show results
while($result = mysql_fetch_array( $data ))
{
echo $result['artist'];
echo " ";
echo $result['song'];
echo "<br>";
echo $result['city'];
echo "<br>";
echo "<br>";
}
//counts results. ifnone. error
$anymatches=mysql_num_rows($data);
if ($anymatches == 0)
{
echo "Sorry, but we can not find an entry to match your query<br><br>";
}
//show user what he searched.
echo "<b>Searched For:</b> " .$find;
}
?>
私のconnect.php(含まれています)は完全に機能します(同じファイルが別のページで機能しているので、問題はありません。したがって、問題ではないと言っても差し支えありません)。
テストを実行して検索を実行すると、searchDb.phpが読み込まれますが、何も表示されません。単に白いページ...
どんな助けでも大歓迎です。なぜ、何が機能していないのか迷っています...みんなありがとう!