drtanz Posted May 14, 2008 Share Posted May 14, 2008 hi pls take a look at my form i am trying to pass variables but the script doesnt seem to be getting my values from the form [attachment deleted by admin] Link to comment https://forums.phpfreaks.com/topic/105592-help-with-blank-fields/ Share on other sites More sharing options...
kenrbnsn Posted May 14, 2008 Share Posted May 14, 2008 Since PHP doesn't like to see periods in what could be variable names, it changes the periods in the form names to underscores. put <?php echo '<pre>' . print_r($_POST,true) . '</pre>'; ?> at the start of the processing script to see this. Ken Link to comment https://forums.phpfreaks.com/topic/105592-help-with-blank-fields/#findComment-540933 Share on other sites More sharing options...
jonsjava Posted May 14, 2008 Share Posted May 14, 2008 fixed code: nlp.php <?php $a1_1 = $_POST['1_1']; echo "asfda $a1_1"; $a1_2 = $_POST['1_2']; $a1_3 = $_POST['1_3']; $a1_4 = $_POST['1_4']; $a2_1 = $_POST['2_1']; $a2_2 = $_POST['2_2']; $a2_3 = $_POST['2_3']; $a2_4 = $_POST['2_4']; $a3_1 = $_POST['3_1']; $a3_2 = $_POST['3_2']; $a3_3 = $_POST['3_3']; $a3_4 = $_POST['3_4']; $a4_1 = $_POST['4_1']; $a4_2 = $_POST['4_2']; $a4_3 = $_POST['4_3']; $a4_4 = $_POST['4_4']; $a5_1 = $_POST['5_1']; $a5_2 = $_POST['5_2']; $a5_3 = $_POST['5_3']; $a5_4 = $_POST['5_4']; $a6_1 = $_POST['6_1']; $a6_2 = $_POST['6_2']; $a6_3 = $_POST['6_3']; $a6_4 = $_POST['6_4']; $a7_1 = $_POST['7_1']; $a7_2 = $_POST['7_2']; $a7_3 = $_POST['7_3']; $a7_4 = $_POST['7_4']; $a8_1 = $_POST['8_1']; $a8_2 = $_POST['8_2']; $a8_3 = $_POST['8_3']; $a8_4 = $_POST['8_4']; $a9_1 = $_POST['9_1']; $a9_2 = $_POST['9_2']; $a9_3 = $_POST['9_3']; $a9_4 = $_POST['9_4']; $a10_1 = $_POST['10_1']; $a10_2 = $_POST['10_2']; $a10_3 = $_POST['10_3']; $a10_4 = $_POST['10_4']; $visual = $a1_3 + $a2_2 + $a3_1 + $a4_4 + $a5_4 + $a6_1 + $a7_1 + $a8_4 + $a9_4 + $a10_1; $auditory = $a1_2 + $a2_1 + $a3_4 + $a4_1 + $a5_1 + $a6_3 + $a7_3 + $a8_2 + $a9_2 + $a10_3; $kinesthetic = $a1_1 + $a2_4 + $a3_2 + $a4_3 + $a5_3 + $a6_2 + $a7_2 + $a8_3 + $a9_1 + $a10_4; $auditory_digital = $a1_4 + $a2_3 + $a3_3 + $a4_2 + $a5_2 + $a6_4 + $a7_4 + $a8_1 + $a9_3 + $a10_2; echo "Visual score: $visual<br />"; echo "Auditory score: $auditory<br />"; echo "Kinesthetic score: $kinesthetic<br />"; echo "Auditory digital score: $auditory_digital<br />"; /* If ($visual > $auditory) && ($visual > $kinesthetic) && ($visual > $auditory_digital) echo ("Your preferred style is Visual") Else if ($auditory > $visual) && ($auditory > $kinesthetic) && ($auditory > $auditory_digital) echo ("Your preferred style is Auditory") Else if ($kinesthetic > $visual) && ($kinesthetic > $auditory) && ($kinesthetic > $auditory_digital) echo ("Your preferred style is Kinesthetic") Else if ($auditory_digital > $visual) && ($auditory_digital > $auditory) && ($auditory_digital > $kinesthetic) echo ("Your preferred style is Auditory Digital"); */ ?> nlptest.php <form action="nlp.php" method="post" target="_blank"> <p> Take the following self-test. It will take just a few minutes, and it will tell you what representational system you prefer to use: visual, auditory, kinesthetic (feeling or doing), or auditory digital (internal dialog). </p> <p> For each of the following statements, put a number next to every phrase, using the following system (each blank should have a number).</p> <p> Closest to describing you = 4<br /> Next best description = 3<br /> Next best = 2<br /> Least descriptive of you = 1<br /> </p> <table> <tr> <td colspan="2"><label>1_ I make important decisions based on:</label></td> </tr> <tr> <td><input type="text" name="1_1" id="1_1" maxlength="1" size="4" /></td> <td><label for="1_1">Gut level feelings</label></td> </tr> <tr> <td><input type="text" name="1_2" id="1_2" maxlength="1" size="4" /></td> <td><label for="1_2">Which way sounds best</label></td> </tr> <tr> <td><input type="text" name="1_3" id="1_3" maxlength="1" size="4" /></td> <td><label for="1_3">What looks best to me</label></td> </tr> <tr> <td><input type="text" name="1_4" id="1_4" maxlength="1" size="4" /></td> <td><label for="1_4">Precise review and study of the issues</label></td> </tr> <tr><td colspan="2" /> </tr> <tr> <td colspan="2"><label>2_ During an argument, I am most likely to be influenced by:</label></td> </tr> <tr> <td><input type="text" name="2_1" id="2_1" maxlength="1" size="4" /></td> <td><label for="2_1">The other person's tone of voice</label></td> </tr> <tr> <td><input type="text" name="2_2" id="2_2" maxlength="1" size="4" /></td> <td><label for="2_2">Whether or not I can see the other person's point of view</label></td> </tr> <tr> <td><input type="text" name="2_3" id="2_3" maxlength="1" size="4" /></td> <td><label for="2_3">The logic of the other person's argument</label></td> </tr> <tr> <td><input type="text" name="2_4" id="2_4" maxlength="1" size="4" /></td> <td><label for="2_4">Whether or not I am in touch with the other person's true feelings</label></td> </tr> <tr><td colspan="2" /> </tr> <tr> <td colspan="2"><label>3_ I most easily communicate what is going on with me by:</label></td> </tr> <tr> <td><input type="text" name="3_1" id="3_1" maxlength="1" size="4" /></td> <td><label for="3_1">The way I dress and look</label></td> </tr> <tr> <td><input type="text" name="3_2" id="3_2" maxlength="1" size="4" /></td> <td><label for="3_2">The feelings I share</label></td> </tr> <tr> <td><input type="text" name="3_3" id="3_3" maxlength="1" size="4" /></td> <td><label for="3_3">The words I choose</label></td> </tr> <tr> <td><input type="text" name="3_4" id="3_4" maxlength="1" size="4" /></td> <td><label for="3_4">My tone of voice</label></td> </tr> <tr><td colspan="2" /> </tr> <tr> <td colspan="2"><label>4_ It is easier for me to:</label></td> </tr> <tr> <td><input type="text" name="4_1" id="4_1" maxlength="1" size="4" /></td> <td><label for="4_1">Find the ideal volume and tuning on a stereo system</label></td> </tr> <tr> <td><input type="text" name="4_2" id="4_2" maxlength="1" size="4" /></td> <td><label for="4_2">Select the most intelligent relevant poing in an interesting subject</label></td> </tr> <tr> <td><input type="text" name="4_3" id="4_3" maxlength="1" size="4" /></td> <td><label for="4_3">Select the most comfortable furniture</label></td> </tr> <tr> <td><input type="text" name="4_4" id="4_4" maxlength="1" size="4" /></td> <td><label for="4_4">Select rich, attractive colour combinations</label></td> </tr> <tr><td colspan="2" /> </tr> <tr> <td colspan="2"><label>5_ I am:</label></td> </tr> <tr> <td><input type="text" name="5_1" id="5_1" maxlength="1" size="4" /></td> <td><label for="5_1">Very attuned to the sounds of my surroundings</label></td> </tr> <tr> <td><input type="text" name="5_2" id="5_2" maxlength="1" size="4" /></td> <td><label for="5_2">Very adept at making sense of new facts and data</label></td> </tr> <tr> <td><input type="text" name="5_3" id="5_3" maxlength="1" size="4" /></td> <td><label for="5_3">Very sensitive to the way articles of clothing feel on my body</label></td> </tr> <tr> <td><input type="text" name="5_4" id="5_4" maxlength="1" size="4" /></td> <td><label for="5_4">Very responsive to colours and to the way a room looks</label></td> </tr> <tr><td colspan="2" /> </tr> <tr> <td colspan="2"><label>6_ In problem solving:</label></td> </tr> <tr> <td><input type="text" name="6_1" id="6_1" maxlength="1" size="4" /></td> <td><label for="6_1">I plan in advance, organising my thoughts by writing and listing them</label></td> </tr> <tr> <td><input type="text" name="6_2" id="6_2" maxlength="1" size="4" /></td> <td><label for="6_2">I attack problems physically, impulsively, selecting the solution involving the greatest activity</label></td> </tr> <tr> <td><input type="text" name="6_3" id="6_3" maxlength="1" size="4" /></td> <td><label for="6_3">I talk problems out, brainstorming, trying solutions verbally</label></td> </tr> <tr> <td><input type="text" name="6_4" id="6_4" maxlength="1" size="4" /></td> <td><label for="6_4">I talk to myself through problems, sub-vocally making sense inside, repeating to self</label></td> </tr> <tr><td colspan="2" /> </tr> <tr> <td colspan="2"><label>7_ In social situations:</label></td> </tr> <tr> <td><input type="text" name="7_1" id="7_1" maxlength="1" size="4" /></td> <td><label for="7_1">I tend to forget names but remember the faces of people</label></td> </tr> <tr> <td><input type="text" name="7_2" id="7_2" maxlength="1" size="4" /></td> <td><label for="7_2">I tend to remember what was done, not what was seend or talked about</label></td> </tr> <tr> <td><input type="text" name="7_3" id="7_3" maxlength="1" size="4" /></td> <td><label for="7_3">I tend to forget faces but remember names of individuals</label></td> </tr> <tr> <td><input type="text" name="7_4" id="7_4" maxlength="1" size="4" /></td> <td><label for="7_4">I usually remember the details and facts of what had happened</label></td> </tr> <tr><td colspan="2" /> </tr> <tr> <td colspan="2"><label>8_ When writing:</label></td> </tr> <tr> <td><input type="text" name="8_1" id="8_1" maxlength="1" size="4" /></td> <td><label for="8_1">I am precisely sizing up what I write, must be well-ordered</label></td> </tr> <tr> <td><input type="text" name="8_2" id="8_2" maxlength="1" size="4" /></td> <td><label for="8_2">I tend to write lightly and with rather fast strokes</label></td> </tr> <tr> <td><input type="text" name="8_3" id="8_3" maxlength="1" size="4" /></td> <td><label for="8_3">I tend to start well initially then deteriorate, pushing the writing instrument(pen)</label></td> </tr> <tr> <td><input type="text" name="8_4" id="8_4" maxlength="1" size="4" /></td> <td><label for="8_4">My handwriting is good in terms of spacing and size, appearance is important</label></td> </tr> <tr><td colspan="2" /> </tr> <tr> <td colspan="2"><label>9_ In response to periods of inactivity:</label></td> </tr> <tr> <td><input type="text" name="9_1" id="9_1" maxlength="1" size="4" /></td> <td><label for="9_1">I start to fidget and find an excuse to move</label></td> </tr> <tr> <td><input type="text" name="9_2" id="9_2" maxlength="1" size="4" /></td> <td><label for="9_2">I tend to hum or talk to others</label></td> </tr> <tr> <td><input type="text" name="9_3" id="9_3" maxlength="1" size="4" /></td> <td><label for="9_3">I tend to think or talk to myself</label></td> </tr> <tr> <td><input type="text" name="9_4" id="9_4" maxlength="1" size="4" /></td> <td><label for="9_4">I tend to stare, doodle, and find something to watch</label></td> </tr> <tr><td colspan="2" /> </tr> <tr> <td colspan="2"><label>10_ In communication:</label></td> </tr> <tr> <td><input type="text" name="10_1" id="10_1" maxlength="1" size="4" /></td> <td><label for="10_1">I tend to be quiet, concise, may use words clumsily and impatient when extensive listening is required</label></td> </tr> <tr> <td><input type="text" name="10_2" id="10_2" maxlength="1" size="4" /></td> <td><label for="10_2">I repeat things to myself and enjoy talking in detail</label></td> </tr> <tr> <td><input type="text" name="10_3" id="10_3" maxlength="1" size="4" /></td> <td><label for="10_3">I enjoy listening but can't wait to talk, give long repetitive descriptions</label></td> </tr> <tr> <td><input type="text" name="10_4" id="10_4" maxlength="1" size="4" /></td> <td><label for="10_4">I use gestures when speaking, listen poorly, get bored with too much detail and like to stand close to people</label></td> </tr> <tr><td colspan="2" /> </tr> <tr> <td colspan="2"><input type="submit" value="Submit Answers" /> </td> </tr> </table> </form> Link to comment https://forums.phpfreaks.com/topic/105592-help-with-blank-fields/#findComment-540940 Share on other sites More sharing options...
drtanz Posted May 14, 2008 Author Share Posted May 14, 2008 ok fixed that thanks now im trying to uncomment the commented out part of nlp.php in order to get the results however it is giving me an error: Parse error: syntax error, unexpected T_BOOLEAN_AND in /home/jpgalea/public_html/php/nlp.php on line 64 any idea why its doing that? Link to comment https://forums.phpfreaks.com/topic/105592-help-with-blank-fields/#findComment-541401 Share on other sites More sharing options...
kenrbnsn Posted May 15, 2008 Share Posted May 15, 2008 Please post line 64 and a few lines before. Ken Link to comment https://forums.phpfreaks.com/topic/105592-help-with-blank-fields/#findComment-541448 Share on other sites More sharing options...
drtanz Posted May 15, 2008 Author Share Posted May 15, 2008 $visual = $a1_3 + $a2_2 + $a3_1 + $a4_4 + $a5_4 + $a6_1 + $a7_1 + $a8_4 + $a9_4 + $a10_1; $auditory = $a1_2 + $a2_1 + $a3_4 + $a4_1 + $a5_1 + $a6_3 + $a7_3 + $a8_2 + $a9_2 + $a10_3; $kinesthetic = $a1_1 + $a2_4 + $a3_2 + $a4_3 + $a5_3 + $a6_2 + $a7_2 + $a8_3 + $a9_1 + $a10_4; $auditory_digital = $a1_4 + $a2_3 + $a3_3 + $a4_2 + $a5_2 + $a6_4 + $a7_4 + $a8_1 + $a9_3 + $a10_2; echo "Visual score: $visual<br />"; echo "Auditory score: $auditory<br />"; echo "Kinesthetic score: $kinesthetic<br />"; echo "Auditory digital score: $auditory_digital<br />"; If ($visual > $auditory) && ($visual > $kinesthetic) && ($visual > $auditory_digital) echo ("Your preferred style is Visual") Else if ($auditory > $visual) && ($auditory > $kinesthetic) && ($auditory > $auditory_digital) echo ("Your preferred style is Auditory") Else if ($kinesthetic > $visual) && ($kinesthetic > $auditory) && ($kinesthetic > $auditory_digital) echo ("Your preferred style is Kinesthetic") Else if ($auditory_digital > $visual) && ($auditory_digital > $auditory) && ($auditory_digital > $kinesthetic) echo ("Your preferred style is Auditory Digital"); Link to comment https://forums.phpfreaks.com/topic/105592-help-with-blank-fields/#findComment-541563 Share on other sites More sharing options...
redarrow Posted May 15, 2008 Share Posted May 15, 2008 Try this mate.......... <?php $visual = $a1_3 + $a2_2 + $a3_1 + $a4_4 + $a5_4 + $a6_1 + $a7_1 + $a8_4 + $a9_4 + $a10_1; $auditory = $a1_2 + $a2_1 + $a3_4 + $a4_1 + $a5_1 + $a6_3 + $a7_3 + $a8_2 + $a9_2 + $a10_3; $kinesthetic = $a1_1 + $a2_4 + $a3_2 + $a4_3 + $a5_3 + $a6_2 + $a7_2 + $a8_3 + $a9_1 + $a10_4; $auditory_digital = $a1_4 + $a2_3 + $a3_3 + $a4_2 + $a5_2 + $a6_4 + $a7_4 + $a8_1 + $a9_3 + $a10_2; echo "Visual score: $visual<br />"; echo "Auditory score: $auditory<br />"; echo "Kinesthetic score: $kinesthetic<br />"; echo "Auditory digital score: $auditory_digital<br />"; If ($visual > $auditory && $visual > $kinesthetic && $visual > $auditory_digital){ echo ("Your preferred style is Visual"); } elseif ($auditory > $visual && $auditory > $kinesthetic && $auditory > $auditory_digital){ echo ("Your preferred style is Auditory"); } elseif ($kinesthetic > $visual && $kinesthetic > $auditory && $kinesthetic > $auditory_digital){ echo ("Your preferred style is Kinesthetic"); } elseif ($auditory_digital > $visual && $auditory_digital > $auditory && $auditory_digital > $kinesthetic){ echo ("Your preferred style is Auditory Digital"); } ?> Link to comment https://forums.phpfreaks.com/topic/105592-help-with-blank-fields/#findComment-541573 Share on other sites More sharing options...
drtanz Posted May 15, 2008 Author Share Posted May 15, 2008 yeah that did it thanks, I am wondering how is the best way to code the part where the program would recognise results that are equal to each other in that eventuality, for example auditory and visual would be the same amount, then the program would have to tell the user that Your preferred styles are auditory and visual Link to comment https://forums.phpfreaks.com/topic/105592-help-with-blank-fields/#findComment-541627 Share on other sites More sharing options...
drtanz Posted May 15, 2008 Author Share Posted May 15, 2008 any help? thanks Link to comment https://forums.phpfreaks.com/topic/105592-help-with-blank-fields/#findComment-542490 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.