Guest User

Untitled

a guest
Feb 27th, 2013
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <?php
  2. include('/home/a3705233/public_html/admin/includes/connect.php');
  3. $dest = "upload/" . basename( $_FILES['picture']['name']);
  4. if(move_uploaded_file($_FILES['picture']['tmp_name'], $dest)){
  5. $r=mysql_query("INSERT INTO files SET path='$dest'");
  6. echo "<img src='$dest'>";
  7.  
  8. }else{
  9. echo "<script>alert(\"Odaberite fotografiju za ucitavanje!\");</script>";
  10. include('/home/a3705233/public_html/admin/upl.php');
  11. }
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment