PHP gevorderde |
|
Ik krijg error:
Parse error: parse error, unexpected T_STRING in c:\program files\easyphp\www\tim\opdracht 1 - online shop\bestel.php on line 7
Wat is er juist verkeerd?
<?php
if($_SESSION["prijscategorie"] == 1){
$bedrag = $_READ["prijs_A"] x $_POST["aantal"]; //Dit is lijn 7
}
if($_SESSION["prijscategorie"] == 2){
$bedrag = $_READ["prijs_B"] x $_POST["aantal"];
}
if($_SESSION["prijscategorie"] == 3){
$bedrag = $_READ["prijs_C"] x $_POST["aantal"];
}
?>
<?php if($_SESSION["prijscategorie"] == 1){ $bedrag = $_READ["prijs_A"] x $_POST["aantal"]; //Dit is lijn 7 } if($_SESSION["prijscategorie"] == 2){ $bedrag = $_READ["prijs_B"] x $_POST["aantal"]; } if($_SESSION["prijscategorie"] == 3){ $bedrag = $_READ["prijs_C"] x $_POST["aantal"]; } ?>
|