Hi all,
Does anyone know how to check for new lines(returns) in a textfile ? I need it, to output it line by line.
here is my first try:
$emails = "emails.txt";
$contGet = file_get_contents ($emails);
for ($i=0; $i<count($content; $i++))
{
if (eregi ("\n",$contGet))
{
print "<br>";
}
print $i;
}