我在codeigniter中提交表单。在我的输入类型文本中,希望在发生错误时保留值。
<input type="text" name="lastname" id="lnm" >
我尝试使用php中的$_get['lastname']
。但它没有用。
答案 0 :(得分:2)
使用set_value()
它可以解决您的问题
<input type="text" name="lastname" id="lnm" value="<?php echo set_value('lastname', '0'); ?>" >