<?php
$PassStud = "Student";
$PassReg = "Regular";
$PassSen = "Senior";
$UserWillRide = $PassStud;
$station = array("Roosevelt, ",
"Balintawak, ",
"Monumento, ",
"5th Avenue, ",
"R. Papa, ",
"Abad Santos, ",
"Blumentritt, ",
"Tayuman, ",
"Bambang, ",
"Doroteo Jose, ",
"Carriedo, ",
"Central Terminal, ",
"United Nations, ",
"Pedro Gil, ",
"Quirino, ",
"Vito Cruz," ,
"Gil Puyat, ",
"Libertad, ",
"Edsa, ",
"Baclaran, ");
$embark = 17;
$disembark = 0;
$totaltravel = $embark - $disembark;
$minfare = 15;
$kmfare = 5;
$overall = ($totaltravel - 4) * $kmfare + $minfare;
if($UserWillRide === "Regular"){
$discount = 0;
$totalfare = $overall - $discount;
}
else if($UserWillRide === "Student"){
$discount = $overall * .20;
$totalfare = $overall - $discount;
}
else if($UserWillRide === "Senior"){
$discount = $overall * .20;
$totalfare = $overall - $discount;
}
echo 'Type of Passenger: ' . "$UserWillRide <br/>";
echo 'You embark from: ' . $station[19] . "$embark KM <br/>";
echo 'You disembark at: ' . $station[2] . "$disembark KM <br/>";
echo 'You travelled a total of: ' . "$totaltravel KM <br/>";
echo 'Total fare is: ' . "$totalfare <br/>";
echo 'Discount is: ' . "$discount <br/>";
echo 'Minimun fare is ' . "$minfare <br/>";
echo 'Succeeding KM Fare is: ' . "$kmfare <br/>";
?>