Hi guys, i was wondering if anyone here could help. i am making a thesis about online surveying. my problems are, i don't really have an idea how to code it, I'm aiming for the google type of survey, the one where you can custom choose any question type you want. i really need help with this problem. please help
That is really not hard. You need basic knowledge of HTML and PHP. <form action="" method="POST"> <input type="text" name="somedataname"> <input type="submit" value="Submit"> </form> HTML: and then PHP part: <?php if ($_POST['submit']) { $name = $_POST['somedataname']; //dosomething with $name } ?> PHP:
hi belthosting, i need the sample source code to make it as the reference. ehehehe. im really i newbie when it comes to this.