Computer Forums

Member Login

Remember Me? Sign Up! | Forgot Password
 
Slogan
 
Computer Forums > Programmers Lounge > Programming Discussions » checking file size before uploading - help
Closed Thread
Old 10-28-2004, 10:12 AM   #1 (permalink)
 
Junior Techie

Join Date: Mar 2004

Posts: 56

hooloovoo

Default checking file size before uploading - help

I have a website which allows users to upload files to a server.

The server does not allow files of size greater than 2MB to be uploaded. Is there any way for me to chack the size of the file before the file is uploaded to the server, somehow checking the size of the file on the users machine?

Any help would be greatly apprechiated.

Thanks
hooloovoo is offline  
Old 10-28-2004, 10:20 AM   #2 (permalink)
 
Super Techie

Join Date: Sep 2004

Posts: 269

VICone

Send a message via AIM to VICone Send a message via Yahoo to VICone
Default

Right click -> Properties
__________________
MCSA, MCP (070-210, 070-218, 070-215), A+, Network+, Security+<br>
<a href=\"http://profiles.myspace.com/users/17229411\" target=\"_blank\">MySpace</a> | <a href=\"http://mcmcse.com\" target=\"_blank\">MCMCSE</a> | <a href=\"http://brainbench.com\" target=\"_blank\">Brainbench : Free Certifications</a>
VICone is offline  
Old 10-28-2004, 10:24 AM   #3 (permalink)
 
Junior Techie

Join Date: Mar 2004

Posts: 56

hooloovoo

Default

I need some sort of message to inform the user that the file is too big.

The site currently uses php, so a solution in php would be best
hooloovoo is offline  
Old 10-28-2004, 03:20 PM   #4 (permalink)
 
Ultra Techie

Join Date: Sep 2003

Location: Bamberg, Germany

Posts: 549

Iron_Cross

Send a message via ICQ to Iron_Cross Send a message via MSN to Iron_Cross Send a message via Yahoo to Iron_Cross
Default

use the filesize() function...
Code:
$fileName = "UploadedFile.jpg";
echo "File Size for ".$fileSize." is ".filesize($fileName);

__________________

See today\'s Penny-Arcade!(May contain foul lanuage)
Pain is weakness leaving the body.

PM Me for my MSN
Iron_Cross is offline  
 
Closed Thread

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On