Advertisement
Guest User

Untitled

a guest
Mar 29th, 2015
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. $animal='placeholder="Animal"';
  2. $name='placeholder="Name"';
  3.  
  4. echo form_open('site/check_in');
  5. echo form_open('site/check_in_pay');
  6.  
  7. echo '<fieldset>Name';
  8. echo form_input('name','',$name);
  9. echo form_input('animal','', $animal);
  10.  
  11. echo form_submit('submit','Check-In !');
  12. echo form_submit('submit','Check-In and pay !');
  13. echo '</fieldset>';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement