Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. if(isset($_POST['article-add'])) {
  2.  
  3. $imageinfo = getimagesize($_FILES['article-image']['tmp_name']);
  4. $arr = array('image/jpeg','image/gif','image/png');
  5. if (array_search($imageinfo['mime'],$arr)) {
  6. echo "Такой формат есть";
  7. echo array_search($imageinfo['mime'],$arr);
  8. }
  9. else {
  10. echo "Такого формата нет";
  11. echo array_search($imageinfo['mime'],$arr);
  12. }
  13. }
  14.  
  15. <form enctype="multipart/form-data" action="index.php" method="post">
  16. <label for="article-image">Картинка статьи:</label><br>
  17. <input type="file" id="article-image" name="article-image">
  18. <button name="article-add" type="submit">Отправить</button>
  19. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement