At 1:31 PM -0700 8/30/01, Kyle Smith wrote:
>ok i have this code to do whats below, but its not working
>
> $fp = fopen("meh.txt","r");
>for($i=0;$i<2;$i++)
>{
>print "$fp[$i]";
>}
>?>
That's because $fp is a file POINTER, not the actual contents of the
file. You might have been thinking of t
Kyle Smith wrote:
>ok i have this code to do whats below, but its not working
>
Try to use file(), which will return an array.
So that would be:
$lines = file(filename);
for($i=0; $i<2; $i++)
{
print($lines[$i]);
}
/franklin
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe
> print "$fp[$i]";
> }
> ?>
>
>
> -lk6-
> http://www.StupeedStudios.f2s.com
> Home of the burning lego man!
>
> ICQ: 115852509
> MSN: [EMAIL PROTECTED]
> AIM: legokiller666
>
>
> - Original Message -
> From: "Kyle Smith" <[EMAIL
IL PROTECTED]>
Sent: Thursday, August 30, 2001 1:15 PM
Subject: [PHP] Quick TXT document stuff
Ok im like in a realy hurry here, so can someone please tell me (or show)
how i make a script read the first (top) 1 or 5 lines from a text document?
Thanks!
-lk6-
http://www.StupeedStudios.f2s.com
Ho
Ok im like in a realy hurry here, so can someone please tell me (or show) how i make a
script read the first (top) 1 or 5 lines from a text document?
Thanks!
-lk6-
http://www.StupeedStudios.f2s.com
Home of the burning lego man!
ICQ: 115852509
MSN: [EMAIL PROTECTED]
AIM: legokiller666
5 matches
Mail list logo