Jump to content

PHP!!!!!!Help urgent


jalani86

Recommended Posts

<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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.