私は、顧客 ID を入力して送信ボタンをクリックすることで、注文記録 (名前、住所、注文金額) を検索できるプログラムに取り組んでいます。配列は、前の画面で作成されたファイルからロードされます。
私が理解しようとしているのは、入力された ID で指定されたレコードのすべてのコンテンツをエコーする方法です。私はPHPを数週間しかやっていません。
<?php
$DOCUMENT_ROOT = $_SERVER['DOCUMENT_ROOT'];
$customers = file("customers.txt");
$number_of_customers = count($customers);
if($number_of_customers ==0) {
echo "<p><No customers found.</strong></p>";
}
//$key = array_search('id',$customers);
$key = 'id';
$search=array_search($key,$customers);
echo $customers;
?>