Hallo,
nachdem ich heute unsanft in einem anderen PHP Forum auf die "Schnauze" gefallen bin möchte ich es hier nocheinmal versuchen.
Ich habe eine html-Datei, sozusagen ein kleines Bestellformular.
Die Werte werden in eine php-Datei übergeben und sollen von dort aus per Mail weitergeleitet werden.
Letztgenannter Punkt ist mir schleierhaft aber nachdem im anderen PHP-Forum diese Frage u.a. dazu geführt hatte, das mein Thread unbeantwortet sofort wieder geschlossen wurde werde ich dies notgedrungen ausklammern.
In Zeile 27:
if ($geldsumme <= 20) {$geldsummen=$geldsumme + 2.3} ;
kommt dieser Fehler.
Parse error: syntax error, unexpected '}' in E:\Programme\xampp\htdocs\xampp\php-beispiele\09_Formular-Auswertung\rechnung-post.php on line 27
Nach meiner Literatur wird der if - Befehl wie folgt ausgeführt
if ($variable UNTERSCHEIDER $variable2) {befehl 1 befehl2}
Mir würde es sehr weiterhelfen wenn ich nicht als Antwort nur erhalten würde "Lies dies und das" denn ich mache seit 7 Tagen nichts anderes.
Danke.
<?php
$anrede = $_POST["anrede"];
$vorname = $_POST["vorname"];
$nachname = $_POST["nachname"];
$strasse = $_POST['strasse'];
$plzort = $_post['plzort'];
$tel = $_post['tel'];
define ("MWST",19);
define ("WAEHRUNG"," Euro");
$bez1 = $_POST["bez1"];
$bez2 = $_POST["bez2"];
$bez3 = $_POST["bez3"];
$anz1 = $_POST["anz1"];
$anz2 = $_POST["anz2"];
$anz3 = $_POST["anz3"];
$ep1 = 5;
$ep2 = $_POST["ep2"];
$ep3 = $_POST["ep3"];
$preis1 = $anz1*$ep1;
$preis2 = $anz2*$ep2;
$preis3 = $anz3*$ep3;
define ("bestellwert",20);
define ("rabattwert",25);
$geldsumme = $preis1+$preis2+$preis3;
if ($geldsumme <= 20) {$geldsummen=$geldsumme + 2.3} ;
$geldsumme2 = $geldsumme-$rabatt+$geldsummen;
$tara = $geldsumme2/100*MWST;
?>
<head>
<style type="text/css">
<!--
.u {border-bottom-width:2px; border-bottom-style:solid; border-bottom-color:#000000; }
.f {font-weight: bold;}
-->
</style>
</head>
<body>
<h1>Rechnung</h1>
<p align="right"><?php echo date("Y-m-d").", ".date("H:i")." Uhr" ?></p>
<?php echo "<b>$anrede<br>$vorname $nachname</b><hr>" ?>
<table width="100%">
<tr>
<td><?php echo "$anz1 " ?></td>
<td><?php echo "$bez1 " ?></td>
<td>à <?php echo "$ep1 ".WAEHRUNG." = " ?></td>
<td align="right"><?php echo number_format($preis1,2).WAEHRUNG ?></td>
</tr>
<tr>
<td><?php echo "$anz2 " ?></td>
<td><?php echo "$bez2 " ?></td>
<td>à <?php echo "$ep2 ".WAEHRUNG." = " ?></td>
<td align="right"><?php echo number_format($preis2,2).WAEHRUNG ?></td>
</tr>
<tr>
<td class="u"><?php echo "$anz3 " ?></td>
<td class="u"><?php echo "$bez3 " ?></td>
<td class="u">à <?php echo "$ep3 ".WAEHRUNG." = " ?></td>
<td class="u" align="right"><?php echo number_format($preis3,2).WAEHRUNG ?></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td class="f">Summe</td>
<td class="f" align="right"><?php echo number_format($geldsumme,2).WAEHRUNG ?></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td><?php echo "davon MwSt (".MWST."%)" ?></td>
<td align="right"><?php echo number_format($tara,2).WAEHRUNG; ?></td>
</tr>
</TABLE>
</body>
nachdem ich heute unsanft in einem anderen PHP Forum auf die "Schnauze" gefallen bin möchte ich es hier nocheinmal versuchen.
Ich habe eine html-Datei, sozusagen ein kleines Bestellformular.
Die Werte werden in eine php-Datei übergeben und sollen von dort aus per Mail weitergeleitet werden.
Letztgenannter Punkt ist mir schleierhaft aber nachdem im anderen PHP-Forum diese Frage u.a. dazu geführt hatte, das mein Thread unbeantwortet sofort wieder geschlossen wurde werde ich dies notgedrungen ausklammern.
In Zeile 27:
if ($geldsumme <= 20) {$geldsummen=$geldsumme + 2.3} ;
kommt dieser Fehler.
Parse error: syntax error, unexpected '}' in E:\Programme\xampp\htdocs\xampp\php-beispiele\09_Formular-Auswertung\rechnung-post.php on line 27
Nach meiner Literatur wird der if - Befehl wie folgt ausgeführt
if ($variable UNTERSCHEIDER $variable2) {befehl 1 befehl2}
Mir würde es sehr weiterhelfen wenn ich nicht als Antwort nur erhalten würde "Lies dies und das" denn ich mache seit 7 Tagen nichts anderes.
Danke.
<?php
$anrede = $_POST["anrede"];
$vorname = $_POST["vorname"];
$nachname = $_POST["nachname"];
$strasse = $_POST['strasse'];
$plzort = $_post['plzort'];
$tel = $_post['tel'];
define ("MWST",19);
define ("WAEHRUNG"," Euro");
$bez1 = $_POST["bez1"];
$bez2 = $_POST["bez2"];
$bez3 = $_POST["bez3"];
$anz1 = $_POST["anz1"];
$anz2 = $_POST["anz2"];
$anz3 = $_POST["anz3"];
$ep1 = 5;
$ep2 = $_POST["ep2"];
$ep3 = $_POST["ep3"];
$preis1 = $anz1*$ep1;
$preis2 = $anz2*$ep2;
$preis3 = $anz3*$ep3;
define ("bestellwert",20);
define ("rabattwert",25);
$geldsumme = $preis1+$preis2+$preis3;
if ($geldsumme <= 20) {$geldsummen=$geldsumme + 2.3} ;
$geldsumme2 = $geldsumme-$rabatt+$geldsummen;
$tara = $geldsumme2/100*MWST;
?>
<head>
<style type="text/css">
<!--
.u {border-bottom-width:2px; border-bottom-style:solid; border-bottom-color:#000000; }
.f {font-weight: bold;}
-->
</style>
</head>
<body>
<h1>Rechnung</h1>
<p align="right"><?php echo date("Y-m-d").", ".date("H:i")." Uhr" ?></p>
<?php echo "<b>$anrede<br>$vorname $nachname</b><hr>" ?>
<table width="100%">
<tr>
<td><?php echo "$anz1 " ?></td>
<td><?php echo "$bez1 " ?></td>
<td>à <?php echo "$ep1 ".WAEHRUNG." = " ?></td>
<td align="right"><?php echo number_format($preis1,2).WAEHRUNG ?></td>
</tr>
<tr>
<td><?php echo "$anz2 " ?></td>
<td><?php echo "$bez2 " ?></td>
<td>à <?php echo "$ep2 ".WAEHRUNG." = " ?></td>
<td align="right"><?php echo number_format($preis2,2).WAEHRUNG ?></td>
</tr>
<tr>
<td class="u"><?php echo "$anz3 " ?></td>
<td class="u"><?php echo "$bez3 " ?></td>
<td class="u">à <?php echo "$ep3 ".WAEHRUNG." = " ?></td>
<td class="u" align="right"><?php echo number_format($preis3,2).WAEHRUNG ?></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td class="f">Summe</td>
<td class="f" align="right"><?php echo number_format($geldsumme,2).WAEHRUNG ?></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td><?php echo "davon MwSt (".MWST."%)" ?></td>
<td align="right"><?php echo number_format($tara,2).WAEHRUNG; ?></td>
</tr>
</TABLE>
</body>
Kommentar