How can I set the "value" of an <input> from a <form> with the value of a PHP variable?
<?php $street = 'Main Street'; ?> <input type="text" name="street" value="<?php echo $street; ?>" />
Is that kinda what you're looking for?
Yeah, thanks!
And, just for completeness sake, you could have written
<?php $street = 'Main Street'; echo "<input type='text' name='street' value='$street'>"; ?>