jalani86 Posted February 21, 2008 Share Posted February 21, 2008 <html> <head> <title>Confirmation</title> </head> <body> <h1>Ticket Confirmation</h1> if ($_POST[selticketclass]== Economy) { $price =150; } else if ($_POST [selticketclass]== Business) { $price =200; } else if ($_POST [selticketclass]== First) { $price =300; } <?php $VAT = $price * 0.175; $unit_price = $price + $VAT; $total_cost = $_ POST [selqty] * $unit_price;? echo "You will be departing from: $_POST[selorigin]"; echo "Your arrival destination is: $_POST[seldestination]"; echo "The number of tickets you ordered: $_POST[selqty]"; echo "The class of the flight you selected is: $_POST[selclass]"; echo "Payment method: $_POST[radcard]"; echo "Card Number: $_POST[txtcardNumber]"; echo "Card expiry date: $_POST[txtexpireDate]"; echo "Name of the cardholder: $_POST[txtnameOnCard]"; echo "Cost of all the tickets you ordered: $price"; echo "V.A.T: $unit_price"; echo "Total cost: $total_cost"; ?> </body> </html> COULD ANYONE PLEASE HELP ME OR COULD FIX THIS CODE. THANKYOU Quote Link to comment Share on other sites More sharing options...
Caesar Posted February 21, 2008 Share Posted February 21, 2008 Could you maybe say what problem you're having or paste any errors you're getting so that we don't have to waste time figuring it out? Thanks, buddy. Quote Link to comment Share on other sites More sharing options...
richardjh Posted February 21, 2008 Share Posted February 21, 2008 Is this a html page because the first part (if statment) is not surrounded by php tags. Quote Link to comment Share on other sites More sharing options...
smithmr8 Posted February 21, 2008 Share Posted February 21, 2008 if ($_POST[selticketclass]== Economy) { $price =150; } else if ($_POST [selticketclass]== Business) { $price =200; } else if ($_POST [selticketclass]== First) { $price =300; } This should be inside PHP Tags. Quote Link to comment 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.