my_r31_baby Posted July 29, 2006 Share Posted July 29, 2006 <td><input type="text" name="username" value= "<?php=$_POST['username']?>" size="40%"></td>Everytime i load the page as soon as i enter the php code i get blank pages... Any ideas? Quote Link to comment https://forums.phpfreaks.com/topic/15955-is-there-a-problem-with-this/ Share on other sites More sharing options...
Drumminxx Posted July 29, 2006 Share Posted July 29, 2006 you have to use short open tags when the = to print/echo<td><input type="text" name="username" value= "<?=$_POST['username']?>" size="40%"></td>or<td><input type="text" name="username" value= "<?php echo $_POST['username']?>" size="40%"></td> Quote Link to comment https://forums.phpfreaks.com/topic/15955-is-there-a-problem-with-this/#findComment-65533 Share on other sites More sharing options...
my_r31_baby Posted July 29, 2006 Author Share Posted July 29, 2006 thanks dude much appreciated... ;) Quote Link to comment https://forums.phpfreaks.com/topic/15955-is-there-a-problem-with-this/#findComment-65534 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.