1

MySQLデータベースを持っているので、トランザクション番号(名前、電子メール、item_nameが表示されます)を検索するか、電子メールアドレスと名前と購入日を検索する必要があります。これにより、トランザクション番号とitem_nameが表示されます-メールアドレス、名前、購入日がすべて正しくない限り、何も表示されたくありません。

私のデータベースのフィールドは次のとおりです。

iname
iemail
itransaction_id
item_name

誰か助けてもらえますか....これは私が現在持っているものです....

<html>

<head>
<title>Search</title>
</head>

<body bgcolor=#ffffff>

<h2>Search</h2>

<form name="search" method="post" action="findme.php">
Seach for: <input type="text" name="find" /> 


<input type="submit" name="search" value="Search" />
</form>

</body>

</html>

findme.htmlとして保存

次:

<html>
<head><title>Searching for a student...</title>
</head>
<body bgcolor=#ffffff>

<?php

echo "<h2>Search Results:</h2><p>";

//If they did not enter a search term we give them an error
if ($find == "")
{
echo "<p>You forgot to enter a search term!!!";
exit;
}

// Otherwise we connect to our Database
mysql_connect("xxxx.com", "xxxx", "xxxxpw") or             die(mysql_error());
mysql_select_db("xxxx") or die(mysql_error());

// We perform a bit of filtering
$find = strtoupper($find);
$find = strip_tags($find);
$find = trim ($find);

//Now we search for our search term, in the field the user specified
$iname = mysql_query("SELECT * FROM ibn_table WHERE upper($field) LIKE'%$find%'");

//And we display the results
while($result = mysql_fetch_array( $iname ))
{
echo $result['firstname'];
echo " ";
echo $result['lastname'];
echo "<br>";
echo $result['idnumber'];
echo "<br>";
echo "<br>";
}

//This counts the number or results - and if there wasn't any it gives them a     little     message explaining that
$anymatches=mysql_num_rows($iname);
if ($anymatches == 0)
{
echo "Sorry, but we can not find an entry to match your query...<br><br>";
}

//And we remind them what they searched for
echo "<b>Searched For:</b> " .$find;
//}
?> 


</body>
</html>

これはfindme.phpとして保存されます

これは、現在取得しているエラーです。

の検索結果:

警告:mysql_fetch_array():指定された引数は31行目の/hermes/bosweb25a/b409/ipg.bexgroupcouk/silverliningnetworks/Database/findme.phpにある有効なMySQL結果リソースではありません

警告:mysql_num_rows():指定された引数は43行目の/hermes/bosweb25a/b409/ipg.bexgroupcouk/silverliningnetworks/Database/findme.phpにある有効なMySQL結果リソースではありません申し訳ありませんが、クエリに一致するエントリが見つかりません..。。

検索対象:CARYS

4

3 に答える 3

2

SELECT * FROM ibn_table WHERE itransaction_id LIKE '%$find%'
LIKE と '%$find%' の間のスペースに注意してください

于 2013-03-08T08:07:14.257 に答える
0

私はあなたのためにトリを持っています..

            <html>
            <head><title>Searching for a student...</title>
            </head>
            <body bgcolor=#ffffff>

            <?php
            include "config.php";
            echo "<h2>Search Results:</h2><p>";

            if(isset($_POST['search']))
            {
            $find =$_POST['find'];
            //If they did not enter a search term we give them an error
            if ($find == "")
            {
            echo "<p>You forgot to enter a search term!!!";
            exit;
            }

            // Otherwise we connect to our Database


            // We perform a bit of filtering
            $find = strtoupper($find);
            $find = strip_tags($find);
            $find = trim ($find);

            //Now we search for our search term, in the field the user specified
            $iname = mysql_query("SELECT * FROM ibntable WHERE name LIKE'%$find%'")
             or die(mysql_error());

            //And we display the results
            while($result = mysql_fetch_array( $iname ))
            {
            echo "id :" .$result['fname'];
            echo "<br> ";
            echo "name :".$result['lname'];
            echo "<br>";
            echo "name :".$result['middlename'];
            echo "<br>";
            echo "<br>";
            }

            //This counts the number or results - and if there wasn't any it gives them a     little     message explaining that
            $anymatches = mysql_num_rows($iname);
            if ($anymatches == 0)
            {
            echo "Sorry, but we can not find an entry to match your query...<br><br>";
            }

            //And we remind them what they searched for
            echo "<b>Searched For:</b> " .$find;
            //}


            }
            ?> 


            </body>
            </html>
于 2013-03-08T08:01:44.593 に答える