Guest User

Untitled

a guest
Oct 17th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <?php
  2. /**
  3. * application/views/welcome_message.php
  4. *
  5. */
  6. ?>
  7.  
  8. <div id="container">
  9. <?php
  10. echo form_open('/');
  11.  
  12. $data = array(
  13. 'name' => 'username',
  14. 'id' => 'username',
  15. 'value' => 'johndoe',
  16. 'maxlength' => '100',
  17. 'size' => '50',
  18. 'style' => 'width:50%',
  19. );
  20.  
  21. echo form_input($data);
  22. echo form_submit();
  23. echo form_close();
  24.  
  25. ?>
  26. </div>
Add Comment
Please, Sign In to add comment