How to make column filled not empty while warning show up |
Yups,,thanks for your help, yes i added value="<?php echo set_value('alamat_rumah' ); ?>"
Before: <div class="form-group"> <label>Alamat</label> <input type="text" name="alamat_rumah" class="form-control" placeholder="Masukkan alamat.."> <?php echo form_error('alamat_rumah'); ?> </div> After : <div class="form-group"> <label>Alamat</label> <input type="text" name="alamat_rumah" value="<?php echo set_value('alamat_rumah' ); ?>" class="form-control" placeholder="Masukkan alamat.."> <?php echo form_error('alamat_rumah'); ?> </div> |
Messages In This Thread |
How to make column filled not empty while warning show up - by kelapamuda - 02-17-2020, 10:49 PM
RE: How to make column filled not empty while warning show up - by muuucho - 02-18-2020, 02:55 AM
RE: How to make column filled not empty while warning show up - by kelapamuda - 02-18-2020, 08:29 PM
|