Quote:
Originally Posted by d-null
if I understand what you are asking for, this will do it nicely:
Code:
<?php
if ( ( $file = file( "file.txt" ) ) !== false )
{
foreach( $file as $line )
{
if (ctype_alpha($line{0}))
{
echo $line . "<br>";
}
}
}
?>
|
ya that's what I was looking for, thanks alot bro

