Ma to wyglądać tak:

To co udało mi się napisać:
<?php require_once("connection.php"); echo ' <form action="" method="post"> <table border="1" width="100%" cellpadding="3" cellspacing="1"> <tr> <td width="10%" align="center">Nazwa:</td> <td width="10%" align="center">Cena:</td> <td width="10%" align="center">Ilość sztuk:</td> <td width="10%" align="center">Razem:</td> <td width="10%" align="center">Licz:</td> </tr>'; $razem = $cena * $sztuk; } echo ' <tr> <td>'.$sklep['nazwa'].'<input type="hidden" name="nazwa" value="'.$sklep['nazwa'].'"></td> <td>'.$sklep['cena'].'<input type="hidden" name="cena" value="'.$sklep['cena'].'"></td> <td><input type="text" name="sztuk" size="5"></td> <td>'.$sklep['cena']*$_POST['sztuk'].' zł</td> <td><input type="submit" name="licz" value="Licz"></td> </tr>'; } ?>
Proszę o jakieś rady/wskazówki.