Esempio n. 1
0
 echo "<tr><th>Comensales</th><td>" . $_SESSION['comensales'] . "</td></tr>";
 ?>
                                 <tr>
                                     <th>MENU</th>
                                     <th></th>
                                 </tr>
                                 <?php 
 list($platos) = Menu::getByMenu($_SESSION['id_menu']);
 foreach ($platos as $plato) {
     echo "<tr><td>" . $plato->getValueEncoded("nombre") . "</td><td></td></tr>";
 }
 $menu = Menu::getById($_SESSION['id_menu']);
 $_SESSION['precio'] += $menu->getValueEncoded("precio");
 $_SESSION['precio'] *= $_SESSION['comensales'];
 echo "<tr><th>DECORACION</th><th></th></tr>";
 $decoracion = Decoracion::getById($_SESSION['id_decoracion']);
 echo "<tr><td>" . $decoracion->getValueEncoded("nombre") . "</td><td></td></tr>";
 echo "<tr><th>VINO</th>\n                                <th></th>\n\t\t\t\t</tr>";
 $bebida = $_SESSION['bebidas'];
 $cantidad = $_SESSION['cantidad'];
 $bebidas = Bebida::getById($bebida);
 echo "<tr><th>Nombre</th><td>" . $bebidas->getValueEncoded("nombre") . "</td></tr>";
 echo "<tr><th>Precio</th><td>" . $bebidas->getValueEncoded("precio") . "€</td></tr>";
 echo "<tr><th>Cantidad</th><td>" . $cantidad . "</td></tr>";
 $_SESSION['precio'] += $bebidas->getValueEncoded("precio") * $cantidad;
 echo "<tr><th>TOTAL</th>\n                                <th></th>\n\t\t\t\t</tr>";
 echo "<tr><th>" . $_SESSION['precio'] . "€</th><td></td></tr>";
 ?>
                             </tbody>
             </table>
            <input type="submit" value="enviar" name="insertar">