Added by anonymous on 2008-10-03 13:17:51 Download/View
- if($this->uri->segment(3))
- {
- $this->form = new Model_Forms;
- $this->form = $this->form->with('res_form_fields')->get($this->uri->segment(3), 'name');
- }
- {
- $this->form_data = new stdClass;
- foreach($this->form as $row)
- {
- {
- $this->form_data->id = $row->id;
- $this->form_data->name = $row->name;
- $this->form_data->email = $row->email;
- }
- }
- }