Advertisement
Guest User

Code in form (HTML):

a guest
Sep 6th, 2011
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. <?php
  2. $form = Form::open(array('action' => 'upload/submit', 'enctype' => 'multipart/form-data', 'method' => 'post'));
  3. $form .= Form::file('userfile');
  4. $form .= Form::submit();
  5.  
  6. echo $form;
  7. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement