05-02-2010, 08:45 PM
[eluser]01010011[/eluser]
EDIT:
Thanks ryeguy
END OF EDIT
Hi,
I am trying to do this:
with CI's form_hidden helper:
Nothing prints when I use the CI helper function but the first input type works fine. Any assistance will be appreciated.
EDIT:
Code:
form_hidden('Name',$variable->id);
END OF EDIT
Hi,
I am trying to do this:
Code:
//view.php
<input type="hidden" name="Name" value="<?php echo $variable->id; ?>
with CI's form_hidden helper:
Code:
//view.php
<?php echo form_hidden('Name','<?php echo $variable->id;') ?>
Nothing prints when I use the CI helper function but the first input type works fine. Any assistance will be appreciated.