prova così
Codice PHP:
<?php
$ricerca = $_REQUEST['ricerca'];
$haystack = file('test.txt');
for ($i=0;$i<count($haystack);$i++){
if (strstr($haystack[$i], $ricerca))
{ echo $haystack[$i]."<br>"; }
}
?>
ma per sfizio che è questo??
<input type="text" ricerca="giocatore" value="">
al massimo così
<input type="text" name="giocatore" value="">
e senza il name nel input submit!
quindi cambierebbe il codice
<form method="post" action="search.php">
Giocatore: <input type="text" name="giocatore" value="">
<input type="submit" value="ricerca">
</form>
e anche il php
Codice PHP:
<?php
$ricerca = $_REQUEST['giocatore'];
$haystack = file('test.txt');
for ($i=0;$i<count($haystack);$i++){
if (strstr($haystack[$i], $ricerca))
{ echo $haystack[$i]."<br>"; }
}
?>