Welcome Guest, Not a member yet? Register   Sign In
undefined index
#4

[eluser]swgj19[/eluser]
Quote:Have you auto-loaded the form helper because it is not included in the controller and no field name in your form is called “name”.

Yes, the form helper is auto-loaded in my config/autoload.php

I changed my from field names to:

Code:
<br />
<h1>&lt;?php echo $title;?&gt;</h1>

&lt;?php

$data = array();
echo form_open('admin/comments/edit');
echo "<p><label for='name'>Name</label><br/>";
$data = array('name'=>'name','id'=>'name','size'=>25, 'value' => $comment['name']);
echo form_input($data) ."</p>";

echo "<p><label for='email'>email</label><br/>";
$data = array('name'=>'email','id'=>'email','size'=>40, 'value' => $comment['email']);
echo form_input($data) ."</p>";

echo "<p><label for='body'>body</label><br/>";
$data = array('name'=>'body','id'=>'body','rows'=>5, 'cols'=>'40', 'value' => $comment['body']);
echo form_textarea($data) ."</p>";

echo "<p><label for='status'>Status</label><br/>";
$options = array('active' => 'active', 'inactive' => 'inactive');
echo form_dropdown('status', $options, $comment['status']) ."</p>";

echo form_hidden('id', $comment['id']);
echo form_submit('submit', 'update comment');
echo form_close();
?&gt;
<br />

I still have the same errors.


Messages In This Thread
undefined index - by El Forum - 11-27-2012, 01:53 AM
undefined index - by El Forum - 11-27-2012, 01:54 AM
undefined index - by El Forum - 11-27-2012, 04:12 AM
undefined index - by El Forum - 11-27-2012, 04:44 AM
undefined index - by El Forum - 11-27-2012, 05:06 AM
undefined index - by El Forum - 11-27-2012, 05:07 AM
undefined index - by El Forum - 11-27-2012, 05:35 AM
undefined index - by El Forum - 11-27-2012, 05:44 AM
undefined index - by El Forum - 11-27-2012, 05:56 AM
undefined index - by El Forum - 11-27-2012, 06:07 AM
undefined index - by El Forum - 11-27-2012, 06:21 AM
undefined index - by El Forum - 11-27-2012, 06:23 AM
undefined index - by El Forum - 11-27-2012, 07:49 AM
undefined index - by El Forum - 11-27-2012, 09:30 AM
undefined index - by El Forum - 11-27-2012, 09:39 AM
undefined index - by El Forum - 11-27-2012, 10:08 AM
undefined index - by El Forum - 11-27-2012, 01:18 PM



Theme © iAndrew 2016 - Forum software by © MyBB