The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
![]()
Might be simple but im doing something wrong...
this is the code: The HTML Doc: HTML Code:
<html> <head> <title>The PHP Calculator :+)</title> </head> <body bgcolor="#FFFFFF"> <strong>The PHP Calculator</strong> <form action="Form_Handeling.php" method="GET"> First Number: <input type="text" name="number_one" maxlength="3"> <br /> Second Number: <input type="text" name="number_two" maxlength="3"> <br /> Operator: <select name="actions[]"> <option value="+">Add those mofos!</option> <option value="-">Subtract those mofos!</option> <option value="/">Divide those mofos!</option> <option value="*">Multiply those mofos!</option> </selct> <input type="submit" value="Calculate!"> </body> </html> PHP Code:
Something isnt working properly in there... anyone sees anything wrong? |
#2
|
||||
|
||||
![]()
for one, your number2s have missing $
|
#3
|
||||
|
||||
![]() Quote:
oh, and you could exchange all the if's with a switch/case, allthough that shouldn't give any problems either way. |
#4
|
|||
|
|||
![]() Quote:
added them and still not working... it doesnt display anything. Quote:
|
#5
|
||||
|
||||
![]()
Is this script tied in with vb ?
|
#6
|
||||
|
||||
![]() Quote:
You'd have to call it $actions[] if you allowed multiple selections. |
#7
|
|||
|
|||
![]() Quote:
Quote:
PHP Code:
|
#8
|
||||
|
||||
![]()
Maybe you can try this
Code:
<html> <head> <title>The PHP Calculator :+)</title> </head> <body bgcolor="#FFFFFF"> <strong>The PHP Calculator</strong> <form action="Form_Handeling.php" method="post"> First Number: <input type="text" name="number_one" maxlength="3"> <br /> Second Number: <input type="text" name="number_two" maxlength="3"> <br /> Operator: <select name="op"> <option value="+">Add those mofos!</option> <option value="-">Subtract those mofos!</option> <option value="/">Divide those mofos!</option> <option value="*">Multiply those mofos!</option> </select> <input type="submit" value="Calculate!"> </form> </body> </html> PHP Code:
|
#9
|
|||
|
|||
![]() Quote:
|
#10
|
||||
|
||||
![]()
amended the code, try again ?
|
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|