0

名前のリストと検索フィールドを含むドロップダウン ボックスがあります。

ドロップダウンにはデータベースからの名前のリストが入力され、検索フィールドではワイルド カード検索を実行できます。

現時点では、ワイルド カード検索は期待どおりに機能しますが、ドロップダウンからの名前の選択は機能しません。

ドロップダウンリストから名前を選択して検索ボタンをクリックすると、ブラウザのアドレスバーに以下が表示されるため、これはおそらく不要な文字が原因である可能性があると思います。

http://localhost:81/connect/players/?name=%0D%0A3&text=&action=search

私のコードは次のようになっているため、上記のテキスト (%0D%0A) が問題を引き起こしていると思います。

if (isset($_GET['action']) and $_GET['action'] == 'search')
{
include $_SERVER['DOCUMENT_ROOT'] . '/includes/db.inc.php';

    $id = $_GET['name'];  // name slightly confusing but does return the id
    $text = $_GET['text'];

try
{

$sql = "SELECT id, name, age FROM player
    WHERE player.id = '$id'
    OR player.name LIKE '%$text%'
    GROUP BY player.id";

$s = $pdo->query($sql);

}
catch (PDOException $e)
{
    $error = 'Error fetching names.' . $e->getMessage();;
    include 'error.html.php';
    exit();
}
// This is responsible for populating the new player info underneath all
foreach ($s as $row)
{
    $names[] = array('id' => $row['id'], 'name' => $row['name'], 'age' => $row['age']);
}
include 'searchprofiles.html.php';
exit();

}

そして、これにより、データベース内の ID と変数 $id に格納されている ID を比較できなくなっていると思います。

ただし、アドレスバーから手動で %0D%0A を取り除いたところ、まだ機能しないため、別の問題がある可能性がありますか?

ドロップダウンから値を選択せず​​、ワイルド カードを入力しない場合は、すべての行が返されることにも注意してください。

HTML は次のとおりです。

SEARCHPROFILES.HTML.PHP

<?php include_once $_SERVER['DOCUMENT_ROOT'] . '/includes/helpers.inc.php'; ?>

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Manage Jokes: Search Results</title>
</head>

<body>

<h1>Search Results</h1>

<?php if (isset($names)): ?>

<table>
<tr><th>Name</th><th>Options</th></tr>
<?php foreach ($names as $name): ?>
<tr>
<td><?php htmlout($name['name']); ?></td>
<td><?php htmlout($name['age']); ?></td>
<td>
<form action="?" method="post">
<div>
<input type="" name="id" value="<?php
htmlout($name['id']); ?>">
<input type="submit" name="action" value="Edit">
<input type="submit" name="action" value="Delete">
</div>
</form>

</td>
</tr>
<?php endforeach; ?>
</table>
<?php endif; ?>
<p><a href="?">New search</a></p>
<p><a href="..">Return to JMS home</a></p>
</body>
</html>

以下は、値が追加されるフォームの HTML です。

<?php include_once $_SERVER['DOCUMENT_ROOT'] . '/includes/helpers.inc.php'; ?>

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Manage Profiles</title>
</head>

<body>

<h1>Manage Profile</h1>

<p><a href="?add">Add new profile</a></p>

<form action="" method="get">

<p>View player profiles satisfying the following criteria:</p>

<div>

<label for="name">By name:</label>

<select name="name" id="name">

<option value="">Any name</option>

<!-- populates the drop down with names -->
<?php foreach ($names as $name): ?>
<option value="
<?php htmlout($name['id']); ?>">
<?php htmlout($name['name']); ?>
</option>
<?php endforeach; ?>

</select>

</div>

<div>
<label for="text">Containing text:</label>
<input type="text" name="text" id="text">
</div>

<div>
<input type="hidden" name="action" value="search">
<input type="submit" value="Search">
</div>

</form>

</body>
</html>

どんな助けでも大歓迎です。

ありがとう

4

1 に答える 1

0

その理由は、フォーム コントロールにある改行です。

変化する

<option value="
<?php htmlout($name['id']); ?>">
<?php htmlout($name['name']); ?>
</option>

<option value="<?php htmlout($name['id']); ?>">
    <?php htmlout($name['name']); ?>
</option>
于 2012-08-22T12:43:18.343 に答える