Jump to content

Setting a value in an Input field with a variable


booxvid

Recommended Posts

How to set value in an input field?

I'm using a codeigniter framework;

 

<?php 
							$data_input_fname = array('class'=>'input-large',
												'name'=>'firstname',
												'id'=>'firstname',
												'value'=>set_value('<?php echo $fname;?>'),
												'maxlength'=>'100');		

							echo form_input($data_input_fname);

 

<?php 
							$data_input_fname = array('class'=>'input-large',
												'name'=>'firstname',
												'id'=>'firstname',
												'value'=>set_value($fname),
												'maxlength'=>'100');		

							echo form_input($data_input_fname);

 

i already tried those two, but nothing come out in my input field.

Link to comment
Share on other sites

  • 2 weeks later...

No, it won't. For the same reason that the original code didn't work, as explained by Mahngiel just above your post.

 

It's nice that you want to help, but please at least read the entire post and make sure that your solution is indeed correct. Otherwise you're not actually helping, but only making the situation worse. Which I'm sure you don't want.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.