Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>image sharer</title>
  4. <style>
  5. footer {
  6. background-color: #00ff00;
  7. font-family: sans-serif;
  8. position:absolute;
  9. bottom:0;
  10. width:100%;
  11. }
  12. </style>
  13. </head>
  14.  
  15. <body>
  16. <img src="http://ogarserv2.byethost7.com/uploads/logoupload.png"/>
  17. <form action="upload.php" method="post" enctype="multipart/form-data">
  18. browse :<input type="file" name="image"><br/><br/>
  19. <input type="submit" name="upload" value="continue">
  20. </form>
  21.  
  22. <link href="/69/ohno.css" rel="stylesheet" type="text/css" />
  23.  
  24. <?php
  25. if(isset($_POST['upload'])){
  26. $image_name = $_FILES['image']['name'];
  27. $image_type = $_FILES['image']['type'];
  28. $image_size = $_FILES['image']['size'];
  29. $image_tmp_name= $_FILES['image']['tmp_name'];
  30. @$desc = $_POST['desc'];
  31. move_uploaded_file($image_tmp_name,"uploads/$image_name");
  32. echo "<img src='uploads/$image_name' width='300' height='300'><br>";
  33. echo "your image: ";
  34. }
  35. ?>
  36.  
  37. </style>
  38. <footer>
  39. <a href="terms.html" class="bottomLinks">terms of service </a> - <a href="help.html" class="bottomLinks">help</a> - <a href="faq.html" class="bottomLinks">faq</a>
  40. </div>
  41. </footer>
  42.  
  43. </body>
  44. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement