austine_power007 Posted December 10, 2006 Share Posted December 10, 2006 How can i insert a variable value inside a text box so that i can use for update??? ??? Link to comment https://forums.phpfreaks.com/topic/30094-get-values-and-show-in-textbox-solved/ Share on other sites More sharing options...
fert Posted December 10, 2006 Share Posted December 10, 2006 [code]$var="value";echo "<textarea rows=\"10\" cols=\"30\">{$var}</textarea>";[/code] Link to comment https://forums.phpfreaks.com/topic/30094-get-values-and-show-in-textbox-solved/#findComment-138352 Share on other sites More sharing options...
austine_power007 Posted December 10, 2006 Author Share Posted December 10, 2006 [quote author=fert link=topic=118036.msg481993#msg481993 date=1165729678][code]$var="value";echo "<textarea rows=\"10\" cols=\"30\">{$var}</textarea>";[/code][/quote]hey man thanks a lot i am learing PHP :) ..can u tell me if i want to show result inside a input text field i know the HTL code is : <input name='start_dat' type='text' id='start_dat'>i want this kind of text field thanks again man Link to comment https://forums.phpfreaks.com/topic/30094-get-values-and-show-in-textbox-solved/#findComment-138354 Share on other sites More sharing options...
fert Posted December 10, 2006 Share Posted December 10, 2006 [code]$var=5;echo "<input type=\"text\" name=\"name\" value=\"{$var}\">";[/code] Link to comment https://forums.phpfreaks.com/topic/30094-get-values-and-show-in-textbox-solved/#findComment-138355 Share on other sites More sharing options...
austine_power007 Posted December 10, 2006 Author Share Posted December 10, 2006 wow man ur damn fast i give a big clap for u ...i appreciate that a gr8 programmer is here to inspire us :)......thanx a lot man i hope i can be u :P Link to comment https://forums.phpfreaks.com/topic/30094-get-values-and-show-in-textbox-solved/#findComment-138358 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.