Hi guys, Can anyone tell me how to dynamically populate a html input box using php variables?
Cheers, Michael
<?php $name = "must be a newbie";
echo "<form>name:<input type='text' name='name' value='$name' /></form>"; ?>