S Smithy New member Jul 11, 2011 #1 i know this seems to simple to mess up but... <?php $text - 'hello world.'; ?> <input type="text" value="<?php echo $text; ?> ">
i know this seems to simple to mess up but... <?php $text - 'hello world.'; ?> <input type="text" value="<?php echo $text; ?> ">
D Davis Jaunzems New member Jul 16, 2011 #2 <?php $text = "Hello World"; ?> <input type="text" value="<?php echo $text; ?>" /> This should work! You asign values to variables (like $text) with equals sign in php '='
<?php $text = "Hello World"; ?> <input type="text" value="<?php echo $text; ?>" /> This should work! You asign values to variables (like $text) with equals sign in php '='