Skip to content

Instantly share code, notes, and snippets.

Created January 27, 2018 20:40
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/c6fe98a6a442bf3d87ab4d645f5b4f5b to your computer and use it in GitHub Desktop.
Save anonymous/c6fe98a6a442bf3d87ab4d645f5b4f5b to your computer and use it in GitHub Desktop.
order.php
<!DOCTYPE HTML>
<html lang="pl">
<head>
<meta charset="utf-8" />
<title>Podsumowanie zamówienia</title>
<meta name="description" content="opis!" />
<meta name="keywords" content="tagi" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body>
<?php
$paczkow = $_POST['paczkow'];
$grzebienie = $_POST['grzebieni'];
echo<<<END
<h2>Podsumowanie zamówienia<h2/>
<table border="1" cellpadding="10" cellspacing="0">
<tr>
<td>Pączek (0.99PLNG/szt)</td> <td></td>
</tr>
<tr>
<td>Grzebień (1.29PLNG/szt)</td> <td></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