I use the $ _GET function to infer a value with php from a URL (http: .... / index.html? Variable = value), the base material. However, I need to use this value in my form.
Normally, I would set
<?php echo 'value="'.$variable.'"' ; ?>
or something like that. However, I cannot use php inside my form using the editor I'm working with.
Is it possible to set a value in a form without using PHP in my form? If so, how?
Edit: using the CMS editor that I use, you cannot store php code on the server. (I use FCKeditor. The same is used by Dubral). This is a security measure in which all CMS even use Wordpress. Basically, I want to send / set the value in the form using php. Similar to how javascript does this: document.form.field.value
source
share