データ|データベース
searchstr=("/".preg_quote($searchstr)."/");
//$searchstrは検索キーワード
$records=file($file);//全レコード数を取得
//$file検索データファイルです
$search_reocrds=preg_grep ($searchstr, $records);//レコードの検索を開始します
//$search_reocrdsは見つかったレコードの数です
unset($records);
if($search_records){
/ /レコードの表示を開始し、独自のハンドラーを作成します************************
while (list ($key, $val) = each ( $search_records )) {
echo "$val
";
}
//******************************* **** *******************
}