0
<?php
$ponteiro = fopen("nome.txt","r");
//LÊ O ARQUIVO ATÉ
while (!feof ($ponteiro)) {
//LÊ UMA
$linha = fgets($ponteiro, 4096);
echo "<b>".$linha."<br>";
}//FECHA WHILE
//FECHA
fclose ($ponteiro);
?>
wanted to know if there is any way to check the txt file if there is line "1" or name "dast" and play in the database
Put examples of the various lines you want to find in your archive
– Isac