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
https://forums.phpfreaks.com/topic/92313-phphelp-urgent/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.