Can you set a form field value with PHP?
- by dcp3450
I use the $_GET function to pull a value with php from the url (http:..../index.html?variable=value), basic stuff. However, I need to use that value in my form.
Typically, I would set
<?php echo 'value="'.$variable.'"' ; ?>
or something to that effect. However, I can't use php inside my form using the editor I'm working with.
Can I set a value in the form without using PHP in my form? If so, how?