<div class="edit"> <form action="<?php echo base_url(); ?>clients/edit/<?php echo $row->sid; ?>" method="post"> <fieldset class="noborder"> <label for="name" class="block">Name</label> <input type="text" name="name" value="<?php echo $row->name; ?>"/> <label for="address" class="block">Address</label> <input type="text" name="address" value="<?php echo $row->address; ?>"/> <label for="city" class="block">City</label> <input type="text" name="city" value="<?php echo $row->city; ?>"/> <label for="state" class="block">State</label> <input type="text" name="state" value="<?php echo $row->state; ?>"/> <label for="zip" class="block">ZIP</label> <input type="text" name="zip" value="<?php echo $row->zip; ?>"/> <label for="country" class="block">Country</label> <input type="text" name="country" value="<?php echo $row->country; ?>"/> <label for="website" class="block">Website</label> <input type="text" name="website" value="<?php echo $row->website; ?>"/> <label for="phone" class="block">Phone</label> <input type="text" name="phone" value="<?php echo $row->phone; ?>"/> <label for="fax" class="block">FAX</label> <input type="text" name="fax" value="<?php echo $row->fax; ?>"/> <br/><br/> <input type="submit" value="Change"/> </fieldset> </form>