Quick query, is it normal practice to use tables in order to control the layout of a form in php? I thought tables were meant to be the source of all evil and not allowed in a webpage unless you needed an actual table
snip
fieldset {
padding: 10px 10px 20px;
}
p {
padding-left: 5px;
padding-right: 5px;
padding-top: 5px;
}
<fieldset>
<legend>Update something</legend>
<p>
<span class="label">
<label for="some_thing_enabled">Enabled:</label>
</span>
<input id="some_thing_enabled" class="checkbox" type="checkbox" checked="checked" value="checked" name="some_thing_enabled">
</p>
<!-- Rest of questions.. ->
</fieldset>
http://htmlhelp.com/reference/html40/forms/label.htmlThe LABEL element associates a label with a form control. By associating labels with form controls, authors give important hints to users of speech browsers while also allowing visual browsers to duplicate common GUI features (e.g., the ability to click on a text label to select a radio button or checkbox).