Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2014
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. <?php
  2.     require_once '../Includes.php';
  3.    
  4.     if (!empty($_POST['name']) &&
  5.             !empty($_POST['genre']) &&
  6.             !empty($_POST['picture']) &&
  7.             !empty($_POST['description']) &&
  8.             !empty($_POST['epifile']))
  9.     {        
  10.         move_uploaded_file($_FILES['epifile']['tmp_name'], $_FILES['epifile']['name']);
  11.     }
  12.     else
  13.     {
  14.         echo 'Something went wrong. Please go back and try again.';
  15.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement