現在、サイトの管理者側を微調整しています。サイト管理者はフライト番号を入力でき、データベースはフライトに搭乗しているすべての人の名前を取得します。ただし、現時点では、私の結果は次のようになっています。
The following people are on this flight Joe BloggsThe following people are on this flight Gareth RobertsThe following people are on this flight Joe BloggsThe following people are on this flight Gareth RobertsThe following people are on this flight Joe BloggsThe following people are on this flight Gareth RobertsThe following people are on this flight Joe BloggsThe following people are on this flight Gareth RobertsThe following people are on this flight Joe BloggsThe following people are on this flight Gareth RobertsThe following people are on this flight Joe Bloggs
あなたはアイデアを得る...明らかにDPAの理由で作られた名前:)
たとえば、次のように言うにはどうすればよいですか。
フライト番号 2021 の乗客は次のとおりです。
- 名前を付ける
- 名前 2
- 名前 3
これが私のコードです。どんなアドバイスも大歓迎です!
<?
include("logon/include/session.php");
$loggedinuser = $session->username;
$passengerNo = $_POST['enteredPassNo'];
$theflightno = $_POST['enteredflightNo'];
$query1 = mysql_query("SELECT p.surname, p.forename, p.passNo FROM PASSENGER p WHERE p.passNo = '$passengerNo'");
while($row = mysql_fetch_array($query1))
{
echo "Welcome to the site" . " " . $row['forename'] ." ";
}
echo mysql_error();
$query2 = mysql_query("SELECT p.surname, p.forename, p.passNo, p.flightNo FROM PASSENGER p, FLIGHT_INFO f WHERE p.flightNo = '$theflightno'");
while($row = mysql_fetch_array($query2))
{
echo "The following people are on this flight" . "</ br> ";
echo $row['forename'] ." " . $row['surname'];
echo "</ br>";
echo mysql_error();
}
echo mysql_error();
?>
より焦点を当てているのは query2 です。query1 はいくつかのテストに実際に使用されています。明確にするために、 $passengerNo と $theflightNo に保存されている値は、フォームから投稿された後に正しく割り当てられています。
どうもありがとう、
トム
編集:フォーマットに関する素晴らしいアドバイスですが、それでもそのまま印刷されます:-
次の人がこのフライトに搭乗しています
- ガレス・ロバーツ
- ジョー・ブロッグス
- ガレス・ロバーツ
- ジョー・ブロッグス
- ガレス・ロバーツ
- ジョー・ブロッグス
印刷ではなく、
次の人がこのフライトに乗っています:-
- ガレス・ロバーツ
- ジョー・ブロッグス
一度だけなど:)