helios muuuuuchisimas gracias voy a ver si lo saco, si lo logro lo posteo :D
EDIT:
tengo este error ahora
Warning: fgets(): supplied argument is not a valid stream resource in /home/doomis/public_html/index2.php on line 5
Código PHP:
<?php
$file = fopen("1.txt", "r");
if ($file) {
while (!feof($file)) {
$buffer = fgets($handle, 1024);
$number = substr($buffer, 0, 4);
if($_GET['0024'] == $number){
echo $buffer; //Esto mostrara en pantalla la linea completa del archivo
break; //Una vez encontrado no hace falta que siga leyendo lineas
}
}
}
fclose($file)
?>
:S