pre-populate form fields from url parameters
-
A few versions back I was able to pre-populate some form fields such as name and email by doing something along these lines:
https://www.mydomain.com/parentpage/childpage/?name=Wolverine&[email protected]
<input type="text" id="name" maxlength="80" name="name" size="20" value="<?php echo $_GET["name"]; ?>" />
Since updating to 3.2.1 and now 3.3, I am unable to get this feature to work.
Thoughts?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘pre-populate form fields from url parameters’ is closed to new replies.