How can I make a textbox readonly in this code
<?php
echo form_input(array(
'name'=>'price',
'value'=>$item['price'],
'size'=>'6'
));
?>
I want only certain users to only read the value and not be able to change it.