Hello team I have a small issue and I would like to know the cause please see code below:
<input type="text" class="span6" id="item_title" value ="<?php echo set_value('$item_title'); ?>">
The preceding code gives me an validation error in Codeigniter however this code
<?php echo form_input('item_title', $item_title); ?>
It works fine with no validation error.The error indicates that the Item title field is required however i do not get this error with the latter script any ideas.