What's new

Closed Mga php experts help!

Status
Not open for further replies.

xdelat

Honorary Poster
Joined
Apr 26, 2016
Posts
225
Reaction
143
Points
145
Age
28
paano po mag upload ng big file size?, nag kakaroon kasi ng
error pag more than 1 mb na, pahingi mo ng sample ninyo.
Maraming salamat.
 
PHP:
// Check file size
if ($_FILES["fileToUpload"]["size"] > 500000) {
    echo "Sorry, your file is too large.";
    $uploadOk = 0;
}

Adjust 500000 = 500kb to any value.
 
Open your php.ini file. Hanapin mo sa: wamp - C:\wamp\bin\php\php7.0.10\php.ini, xampp - C:\xampp\php\php.ini. Look for this line tapos palitan mo nalang kung ilan gusto mong size:

Code:
; Maximum allowed size for uploaded files.
upload_max_filesize = 40M

; Must be greater than or equal to upload_max_filesize
post_max_size = 40M

Then restart apache.
 
Status
Not open for further replies.

Similar threads

Back
Top