sdyates2001 Posted January 26, 2009 Share Posted January 26, 2009 I seek your wisdom and direction. I am an experienced perl programmer and am assisting a friend with some php code. While I am good with perl and know the resources to use when in need, I can't say that with php. I am looking to create a simple questionnaire that consists of about 15 questions resulting in a yes or a no. Based on the response, I will forward this array to another page, perform a simple if then logic that will see one of three html pages display. While I have Programming PHP, I am having trouble as this book is not tailoured to what I need to do. As I don't believe if having others do my code for me, I am good at reverse engineering code for my own needs. Could someone please provide me some sample code similar to what I am asking or a good tutorial page for what I need. Thanks Kindly, S Quote Link to comment https://forums.phpfreaks.com/topic/142557-passing-an-array-variable-from-a-questionnaire-to-another-page/ Share on other sites More sharing options...
rubing Posted January 27, 2009 Share Posted January 27, 2009 Don't worry that's simple. When you submit an html form, they are stored in a php array called $_POST for example if you submit the following value <input name="question1" value="yes" /> then in php you can get the value will be stored here: $_POST['question1'] Quote Link to comment https://forums.phpfreaks.com/topic/142557-passing-an-array-variable-from-a-questionnaire-to-another-page/#findComment-747089 Share on other sites More sharing options...
Sudden Posted January 27, 2009 Share Posted January 27, 2009 I'm assuming your questionnaire is a form. So by clicking the submit button you automaticly input all values into an array called $_POST['value'] If your form method reads: method="post" on the page specified in the action="anwser.php" The following is a site I made that asks 'do you like sports' and you anwser yes or no. When you hit 'submit' it sends you to another website specified in action="" the page it sends you to automaticly has all the information with-in $_POST['']. // Input page <form id="form1" name="form1" method="post" action="anwser.php">//page info will be sent to Do you like sports? <table width="200"> <tr> <td><label> <input type="radio" name="sports" value="Yes" /> Yes</label></td> </tr> <tr> <td><label> <input type="radio" name="sports" value="No" /> No</label></td> </tr> </table> <label></label> <label>Submit <input type="submit" name="submit" value="Submit" /> </label> </form> So say I want to call their input from the last page I simply have to type. //2nd Page that recieves the info from first page <?php $anwser = $_POST['sports']; //the var $anwser now contains the anwser either Yes/No based on what they gave last page echo $anwser; //will post the anwser on the website ?> I hope this helps, and there should be no need to make an array with their anwsers in it if you will call $_POST[]; Quote Link to comment https://forums.phpfreaks.com/topic/142557-passing-an-array-variable-from-a-questionnaire-to-another-page/#findComment-747090 Share on other sites More sharing options...
sdyates2001 Posted January 27, 2009 Author Share Posted January 27, 2009 @rubing Thanks. I have been working for sometime... my perl is getting int he way. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Questionnaire :: Sheri.com</title> <form id="form1" name="form1" method="post" action="bob.php"> <table width="200"> <tr><td><font face='Arial' size='2'>Question 1</td> <td><input type='checkbox' name='sports' value='$ARRAY[0]'> </tr> <tr><td><font face='Arial' size='2'>Question 2</td> <td><input type='checkbox' name='sports' value='$ARRAY[1]'> </tr> <tr><td><font face='Arial' size='2'>Question 3</td> <td><input type='checkbox' name='sports' value='$ARRAY[2]'> </tr> <tr><td><font face='Arial' size='2'>Question 4</td> <td><input type='checkbox' name='sports' value='$ARRAY[3]'> </tr> </table> <label></label> <label>Submit <input type="submit" name="submit" value="Submit" /> </label> </form> I need check boxes because I need to return the value for each check box. I need to know which ones were checked and which ones were not. When I display, I am not getting an array back. I am just getting $ARRAY[3] or another value, but not what it is... <?php $anwser = $_POST['sports']; echo $anwser; ?> I know this is simple, but I can't seem to bridge the perl gap Quote Link to comment https://forums.phpfreaks.com/topic/142557-passing-an-array-variable-from-a-questionnaire-to-another-page/#findComment-747210 Share on other sites More sharing options...
Sudden Posted January 27, 2009 Share Posted January 27, 2009 Well...I'm not exactly sure what your aiming for, but i'm sure the following link can help you out a little: http://www.homeandlearn.co.uk/php/php4p11.html Quote Link to comment https://forums.phpfreaks.com/topic/142557-passing-an-array-variable-from-a-questionnaire-to-another-page/#findComment-747218 Share on other sites More sharing options...
sdyates2001 Posted January 27, 2009 Author Share Posted January 27, 2009 @Suden Perfect! Thanks so much. I appreciate everyone's help - you have all helped me get to where I need to be Quote Link to comment https://forums.phpfreaks.com/topic/142557-passing-an-array-variable-from-a-questionnaire-to-another-page/#findComment-747227 Share on other sites More sharing options...
Sudden Posted January 27, 2009 Share Posted January 27, 2009 NP man Glad to be helpful Quote Link to comment https://forums.phpfreaks.com/topic/142557-passing-an-array-variable-from-a-questionnaire-to-another-page/#findComment-747244 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.