adamh91 Posted February 28, 2007 Share Posted February 28, 2007 hey, i was wondering how i can get the value stored in a variable to show in the textfield, im using this at the moment, but it doesnt seem to work =/ at the top of my code: <? include 'config.php'; ?> the part i need help with: <input name="textfield" type="text" size="50" value=<?php echo $db_user ?> /> $db_user is a variable stored in config.php thanks Link to comment https://forums.phpfreaks.com/topic/40618-solved-form-textfield-value/ Share on other sites More sharing options...
pocobueno1388 Posted February 28, 2007 Share Posted February 28, 2007 Try this: <?php include 'config.php'; echo "<input name=\"textfield\" type=\"text\" size=\"50\" value=\"$db_user\">"; ?> Link to comment https://forums.phpfreaks.com/topic/40618-solved-form-textfield-value/#findComment-196451 Share on other sites More sharing options...
boo_lolly Posted February 28, 2007 Share Posted February 28, 2007 well, poco's got it right, and you've almost got it right. all you need to do is add double quotes around your variable. otherwise, it will only print the variable until it hits a whitespace. so if the name is 'Firstname Lastname", it will only print 'Firstname'. Link to comment https://forums.phpfreaks.com/topic/40618-solved-form-textfield-value/#findComment-196455 Share on other sites More sharing options...
cheesycarrion Posted March 1, 2007 Share Posted March 1, 2007 <?php include 'config.php'; echo "<input name=\"textfield\" type=\"text\" size=\"50\" value=\"" . $db_user . "\" />"; ?> or you could take your origional approach with double quotes around it like boo_lolly said. <?php include 'config.php'; ?> <input name="textfield" type="text" size="50" value="<?php echo $db_user; ?>" /> Link to comment https://forums.phpfreaks.com/topic/40618-solved-form-textfield-value/#findComment-196498 Share on other sites More sharing options...
boo_lolly Posted March 1, 2007 Share Posted March 1, 2007 <?php include 'config.php'; echo "<input name=\"textfield\" type=\"text\" size=\"50\" value=\"" . $db_user . "\" />"; ?> or you could take your origional approach with double quotes around it like boo_lolly said. <?php include 'config.php'; ?> <input name="textfield" type="text" size="50" value="<?php echo $db_user; ?>" /> thanks for clarifying. welcome to the forums! Link to comment https://forums.phpfreaks.com/topic/40618-solved-form-textfield-value/#findComment-196680 Share on other sites More sharing options...
adamh91 Posted March 1, 2007 Author Share Posted March 1, 2007 Thanks guys Link to comment https://forums.phpfreaks.com/topic/40618-solved-form-textfield-value/#findComment-197009 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.