I want to put a survey generator like this [http://babyfloss.com/!/surveys/top_frien... onto my website. I just don't know the coding! I've posted this question on numerous forums and nobody's given me an answer :( So if anyone knows a tutorial, or can explain it easily please answer!
Survey Generator?
This is being done in a form with a script generating the code. There are plenty of tutorials in numerous scripting languages. Here's a very simple version in PHP.
page1.php
-----------------
%26lt;?php
echo "%26lt;form action='page2.php' method='POST'%26gt;";
echo "Friend 1: %26lt;input type='text' name='friend1'%26gt;";
echo "Did you see Friend 1 today? %26lt;input type='text' name='question1'%26gt;
echo "%26lt;input type=submit value='Submit'%26gt;";
?%26gt;
-------------
page2.php
--------------
%26lt;?php
$friend1 = $_POST['friend1'];
$question1 = $_POST['question1'];
echo "Friend 1: $friend1%26lt;BR%26gt;Did you see Friend 1 today? $question1";
?%26gt;
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment