On Wednesday, June 5, 2002 at 1:57:09 PM, you wrote: > // the error is bieng caused here > $size = int filesize($file)
You don't need the int and you were missing a semicolon... $size = filesize($file); -- Stuart -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php