Advertisement
GWibisono

script upload part 1

Sep 21st, 2012
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. <?php
  2. if($_FILES)
  3. {
  4.     echo '<pre>'; print_r($_FILES); echo '</pre>';
  5. }
  6. ?>
  7. <form method='post' enctype="multipart/form-data" action='#update'>
  8. <table>
  9. <tr><td>Nama</td><td>&nbsp</td>
  10. <tr>
  11.     <td> FILE </td>
  12.     <td><input type=file
  13. name='file' /></td>
  14. </tr></table>
  15. <input type=submit>
  16. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement