Revision: 23442
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at February 8, 2010 00:12 by mattstopa
Initial Code
<html> <head> <title>My Form</title> </head> <body> <?php echo $this->validation->error_string; ?> <?php echo form_open('form'); ?> <h5>Username</h5> <input type="text" name="username" value="" size="50" /> <h5>Password</h5> <input type="text" name="password" value="" size="50" /> <h5>Password Confirm</h5> <input type="text" name="passconf" value="" size="50" /> <h5>Email Address</h5> <input type="text" name="email" value="" size="50" /> <div><input type="submit" value="Submit" /></div> </form> </body> </html>
Initial URL
Initial Description
Initial Title
Code Igniter Form
Initial Tags
Initial Language
PHP