Skip to content

Instantly share code, notes, and snippets.

Created November 18, 2017 19:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/783099b1891a1abf7bd26d400d6d63e4 to your computer and use it in GitHub Desktop.
Save anonymous/783099b1891a1abf7bd26d400d6d63e4 to your computer and use it in GitHub Desktop.
<!DOCTYPE HTML>
<html lang="pl">
<head>
<meta charset="utf-8" />
<title>Podsumowanie zamówenia</title>
</head>
<body>
<?php
$iosc_paczkow = $_POST['paczkow'];
$iosc_grzebieni = $_POST['grzebieni'];
echo<<<END
<h2>Podsumowanie zamówienia</h2>
<table border="1" cellpadding="10" cellspacing="0">
<tr>
<td>Pączek(0.99PLN/szt)</td> <td>$paczkow</td>
</tr>
<tr>
<td>Grzebień(1.29PLN/szt)</td> <td>$grzebieni</td>
</tr>
<tr>
<td>SUMA</td> <td></td>
</tr>
</table>
END;
?>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment