deotpit Posted June 5, 2018 Share Posted June 5, 2018 Hi everyone, The following code is aimed to show "aaa aaa" as default value for input box in a form: <?php //xxx.php $db = mysqli_connect('localhost', '', '', ''); ?> <!DOCTYPE html> <html> <body> <form method="POST" action="xxx.php"> <input type="text" name="id" class="id_input" value=<?php echo 'aaa aaa';?>> </form> </body> </html> Quote Link to comment https://forums.phpfreaks.com/topic/307346-default-value-for-input-box-shows-partially/ Share on other sites More sharing options...
Barand Posted June 5, 2018 Share Posted June 5, 2018 (edited) Your resulting HTML will look like <input type="text" name="id" class="id_input" value=aaa aaa'> but the aaa aaa needs to be in quotes (else it is interpreted only as aaa). Put quotes around the <?php...?>, thus <input type="text" name="id" class="id_input" value="<?php echo 'aaa aaa';?>"> Edited June 5, 2018 by Barand Quote Link to comment https://forums.phpfreaks.com/topic/307346-default-value-for-input-box-shows-partially/#findComment-1558767 Share on other sites More sharing options...
benanamen Posted June 5, 2018 Share Posted June 5, 2018 OP has already been answered on two other forums. Quote Link to comment https://forums.phpfreaks.com/topic/307346-default-value-for-input-box-shows-partially/#findComment-1558773 Share on other sites More sharing options...
Barand Posted June 5, 2018 Share Posted June 5, 2018 I'll try to remember the name - I can't stand timewasters. Quote Link to comment https://forums.phpfreaks.com/topic/307346-default-value-for-input-box-shows-partially/#findComment-1558774 Share on other sites More sharing options...
deotpit Posted June 6, 2018 Author Share Posted June 6, 2018 On 6/5/2018 at 3:06 PM, Barand said: Your resulting HTML will look like <input type="text" name="id" class="id_input" value=aaa aaa'> but the aaa aaa needs to be in quotes (else it is interpreted only as aaa). Put quotes around the <?php...?>, thus <input type="text" name="id" class="id_input" value="<?php echo 'aaa aaa';?>"> Thanks Quote Link to comment https://forums.phpfreaks.com/topic/307346-default-value-for-input-box-shows-partially/#findComment-1558795 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.