How do I restrict the picture size and where do I insert the code in? I can manage to upload pictures but it only can upload and display 4 pictures. what can I do to solve it?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
When you upload files using PHP the information available while uploading is in array: $_FILES['image'] (image is the name of the file input in your form). This array contains some useful information: (copied from: http://php.net/manual/en/reserved.variables.files.php)
[size] would give you the filesize in bytes. If you want to deal with the upload based on it's dimensions you will have to finish the upload first and then check dimensions using PHP function: getimagesize |
|||
|
|