Advertisement
freddy0512

validations

Jul 9th, 2015
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. if (empty($_FILES['foto']['name']))
  2. {
  3. //eksekusi
  4.  
  5. }
  6. else
  7. {
  8. $image_info = getimagesize($_FILES["foto"]["tmp_name"]);
  9. $image_width = $image_info[0];
  10. $image_height = $image_info[1];
  11. if (($image_height=='600') and ($image_width=='600'))
  12. {
  13. //echo "eksekusi";
  14.  
  15. }
  16. else
  17. {
  18. //echo "please check image width and height";
  19. }
  20. }
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement