Before I decided to move my content over to Wordpress, I had tons of surveys that my visitors could fill out and it would generate a code for them to copy and paste (for Facebook notes, blogging, etc).
However, now that I use WP, the code won't work. I have been searching for days for an alternative (or even a plugin) and have had no success.
The code that previously worked was on two pages. The first page would have the text areas, and the code looked like this:
<form action="/Surveys/Coding/01.php" method="post">
Question 1 <input type="text" name="1" /><BR><BR>
Question 2 <input type="text" name="2" /><BR><BR>
Question 3 <input type="text" name="3" /><BR><BR>
<input type="submit" name="send" value="Submit"><input type="reset" name="reset" value="Clear"></form><BR><BR>
After clicking submit, the second page would generate the survey again, but with the visitor's answers. The coding for that was:
Question 1 <?php echo $_REQUEST["1"]; ?><br><br>
Question 2 <?php echo $_REQUEST["2"]; ?><br><br>
Question 3 <?php echo $_REQUEST["3"]; ?><br><br>
I guess it's possible there is a new PHP code for this, or maybe I just can't use it in Wordpress. But I would really appreciate any knowledge anyone else has since search engines are failing to help me 🙂