PHP:Form Demo DIY
Here you can Do-It-Yourself. You can edit the PHP:Form below, and add any HTML you'd like. (make sure you don't change the form of the name, or it won't display)
Edit HTML:
<php:form name="demo1">
Name: <input type="text" name="name" /><br />
E-mail: <input type="text" name="email" /><br />
Male? <input type="radio" name="male" value="yes" />Yes
<input type="radio" name="male" value="no" />No<br />
Favourite Colour?
<select name="colour">
<option value="blue">Blue</option>
<option value="green">Green</option>
<option value="yellow">Yellow</option>
</select><br />
Comments: <br />
<textarea name="comments"></textarea><br />
<input type="submit" name="submit" value="Submit Form" />
</php:form>