\n"; while (($data = fgetcsv($handle, 1000, ";")) !== FALSE) { $num = count($data); for ($c=0; $c < $num; $c++) { $pos = stripos($data[3], $_POST['what']); if ($pos === 0) { echo '
  • '.$data[2].' - '.$request->show_string(trim($data[3])).'
  • '; break; } } $row++; } echo ""; fclose($handle); ?>