[PHP] Using Cygwin tar.exe on Windows

2004-05-18 Thread Brian Muldown
r (or ZIP) archive on Windows (through PHP)? I will happily implement something else for those who must run inferior OS's. Thanks, -brian muldown -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] paging methodology

2004-05-05 Thread Brian Muldown
Chris W. Parker wrote: ok. this is what i was already doing in my previous app but i was just looking to see if it could be streamlined some how. You could perform the full (without LIMIT) query once, Cache the results array (using PEAR Cache) and move back-and-forth through this Cached array. D

[PHP] Re: parse error on fgets

2004-05-05 Thread Brian Muldown
[EMAIL PROTECTED] wrote: Using PHP 4 with this code: if ($csvfile = fopen($csvpath, "r")) { while (!feof ($csvfile)) { $filestring = fgets( $csvfile , 255); } } I get a parse error on the line : $filestring = fgets( $csvfile , 255); Any ideas why this is happening? replaci