Index.php
<html>
<head>
</head>
<body>
<form action="cerca.php" method="post">
<input type="text" name="parola"/>
<input type="submit" name="invia"/>
</form>
</body>
</html>
---------------------------------------------------------
cerca.php
<?php
$parola=$_POST["parola"];
$file= fopen("boh.txt",'r');
$length=filesize ("boh.txt");
$leggi=fread ($file ,$length );
$pos= strpos ($leggi , $parola);
if ($pos===false) {
echo "la parola non e' stata trovata";
}
else {
echo "il file ha lunghezza: ". $length. "<br>";
echo "la stringa e' stata trovata nella posizione: ". $pos. "<br>";
echo "trovata!";
}
?>