try this....
<?
system ("/usr/bin/wc -l $userfile> t.txt");
$fd =fopen('t.txt', 'r');
$buffer=fgets($fd,8);
echo ($buffer);
fclose($fd);
?>
On Fri, 25 Jan 2002 11:41:44 -0800 (PST)
toni baker <[EMAIL PROTECTED]> wrote:
> How can I count the number of lines in the uploaded
> file. ($userfile)
>
> What's wrong with the command below. Thanks
>
> $fp = popen ("usr/bin/wc -l $userfile", "r");
>
> __________________________________________________
> Do You Yahoo!?
> Great stuff seeking new owners in Yahoo! Auctions!
> http://auctions.yahoo.com
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
--
+-----------------------------------------------+
| Pablo Dall'Oglio _ |
| Univates - IT Department �v� |
| Linux User n. 223253 /(_)\ |
| The best source is the source code ^ ^ |
+-----------------------------------------------+
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]