A few versions back I was able to pre-populate some form fields such as name and email by doing something along these lines:
http://www.mydomain.com/parentpage/childpage/?name=Wolverine&email=blades@xmen.org
<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?