Dobrý den,
nedávno jsem dělal skript pro "shop" pomocí php form metody ale informace se neuložují do view-orders.php
zde vám dám soubory:
index.php:
<?php
/*
Author: gmboyYT
Last Edit: 10.12.2019 21:08 (EU)
Its Simple shop
*/
?>
<!DOCTYPE html>
<html>
<head>
<title>Title</title>
</head>
<body>
<form action="method.php" method="post">
<table style="border: 0px;"
<tr style="background: #cccccc;">
<td style="width: 150px; text-align: center;">Item</td>
<td style="width: 15px; text-align: center;">Quantity</td>
</tr>
<tr>
<td>Your item 1</td>
<td><input type="text" name="item1" placeholder="1" size="9" maxlength="9" /></td>
</tr>
<tr>
<td>Your item 2</td>
<td><input type="text" name="item2" placeholder="2" size="9" maxlength="9" /></td>
</tr>
<tr>
<td>Your item 3</td>
<td><input type="text" name="item3" placeholder="3" size="9" maxlength="9" /></td>
</tr>
<tr>
<td>Your Adress</td>
<td><input type="text" name="adress" placeholder="Postal Code, City, Adress and number of a home" size="32" maxlength="70" /></td>
</tr>
<tr>
<td colspan="2" style="text-align: center;">
<input type="submit" value="Submit" />
</td>
</tr>
</table>
</form>
</body>
</html>
method.php: