Welcome Guest, Not a member yet? Register   Sign In
Best way to populate an edit form from a database
#8

[eluser]Nexus Rex[/eluser]
[quote author="PDP" date="1243232347"]
Code:
<select id="calendar_id" name="calendar_id" class="select small-column">
    &lt;?php foreach ($calendars as $calendar):?&gt;
    <option value="&lt;?php echo $calendar->calendars_id;?&gt;" &lt;?php echo ($calendar->calendars_id == $event->calendars_id) ? set_select('calendar_id', $event->calendars_id, TRUE) : set_select('calendar_id', $event->calendars_id); ?&gt; >&lt;?php echo $calendar->calendars_name;?&gt;</option>
    &lt;?php endforeach;?&gt;
</select>

This is what I do with simple selects. The logic works on check boxes and radio buttons.[/quote]

Brilliant!

I used your method for two radio boxes:
Code:
&lt;?php echo form_radio('active', '1', FALSE, (1 == $member->active) ? set_radio('active', $member->active, TRUE) : set_radio('active', '1')); ?&gt; <label for="active">Active</label>
&lt;?php echo form_radio('active', '0', FALSE, (0 == $member->active) ? set_radio('active', $member->active, TRUE) : set_radio('active', '0')); ?&gt; <label for="active">Inactive</label>


Messages In This Thread
Best way to populate an edit form from a database - by El Forum - 04-30-2009, 09:19 AM
Best way to populate an edit form from a database - by El Forum - 04-30-2009, 10:14 AM
Best way to populate an edit form from a database - by El Forum - 04-30-2009, 10:25 AM
Best way to populate an edit form from a database - by El Forum - 05-01-2009, 10:01 AM
Best way to populate an edit form from a database - by El Forum - 05-22-2009, 10:15 AM
Best way to populate an edit form from a database - by El Forum - 05-24-2009, 02:02 AM
Best way to populate an edit form from a database - by El Forum - 05-24-2009, 07:19 PM
Best way to populate an edit form from a database - by El Forum - 01-05-2010, 07:10 PM
Best way to populate an edit form from a database - by El Forum - 01-05-2010, 07:33 PM
Best way to populate an edit form from a database - by El Forum - 01-06-2010, 07:02 AM
Best way to populate an edit form from a database - by El Forum - 01-08-2010, 08:20 AM
Best way to populate an edit form from a database - by El Forum - 02-15-2010, 07:06 AM
Best way to populate an edit form from a database - by El Forum - 03-31-2010, 05:58 AM
Best way to populate an edit form from a database - by El Forum - 03-31-2010, 09:03 AM
Best way to populate an edit form from a database - by El Forum - 03-23-2011, 11:33 AM
Best way to populate an edit form from a database - by El Forum - 07-06-2011, 01:40 PM
Best way to populate an edit form from a database - by El Forum - 07-06-2011, 01:45 PM
Best way to populate an edit form from a database - by El Forum - 07-06-2011, 02:57 PM



Theme © iAndrew 2016 - Forum software by © MyBB