You may want to change the maximum upload file size for your web site. For example, you can set a lower limit to prevent users from uploading large files to your site. To do this, change the upload_max_filesize and post_max_size directives in an .htaccess file.
To change the maximum upload file size for your PHP scripts, follow these steps:
Log in to your account using SSH.
Use a text editor to add the following line to the .htaccess file. Replace xx with the maximum upload file size that you want to set, in megabytes:
php_value upload_max_filesize xxM
Add the following line to the .htaccess file. Replace xx with the maximum HTTP POST file size that you want to set, in megabytes:
php_value post_max_size xxM
Save the changes to the .htaccess file and exit the text editor.
To verify that the new setting is active, create a PHP test file that contains the following code in the same directory where the .htaccess file is located:
Load the test file in your web browser, and then search for the name of the directive. The Local Value column should display the new setting that you specified in the .htaccess file.
for more detail http://www.cyberciti.biz/faq/linux-unix-apache-increase-php-upload-limit/
or
<?php
// Define file size limit
$limit_size=50000;
code......
$file_size=$HTTP_POST_FILES['ufile']['size'];
if($file_size >= $limit_size){
echo "Your file size is over limit<BR>";
echo "Your file size = ".$file_size;
echo " K";
echo "<BR>File size limit = 50000 k";
}
else {
code............