Este es todo el codigo de mi archivo cotizador.php
Código PHP:
Ver original<?php
$user=$_SESSION['usuario'];
$cantidad=$_POST["cantidad"];
$descripcion=$_POST["descripcion"];
$precio=$_POST["precio"];
$sql = 'INSERT INTO temporal (cantidad, descripcion, precio) VALUES (\''.$cantidad.'\',\''.$descripcion.'\',\''.$precio.'\')';
$arraycantidad = array();
?>
<html>
<head>
<meta charset="UTF-8">
<meta name="author" content="Mauricio Briseño de la Garza"/>
<title>ABANZA | PORTAL ADMINISTRATIVO</title>
<link rel="stylesheet" type="text/css" href="estilos.css">
<link rel="stylesheet" type="text/css" href="fonts.css">
</head>
<body>
<div align="center">
<nav>
<ul id="menu">
<li><a href="">Inicio</a></li>
<li><a href="">Editar Pagina</a></li>
<li><a href="">Mensajes</a></li>
<li><a href="generar cotizaciones.php">Generar Cotizaciones</a></li>
<li><a href="">Generar Emails</a></li>
<li><a href="">Ajustes de Usuarios</a></li>
</ul>
</nav>
</div>
<div align="center">
<p align="center" class="tit"><stronger>COTIZADOR</stronger></p>
<form method="post" action="cotizador.php">
<table class="datos">
<tr><td>Fecha:</td><td><input type="date" class="fecha" name="fecha" value="<? echo $hoy; ?>" ></td></tr>
</table>
<table class="datos2">
<tr><td>CANTIDAD</td><td>DESCRIPCION</td><td>PRECIO</td></tr>
<tr>
<td><input type="text" name="arraycantidad[]" class="cantidad" value=<? echo $row[1]; ?> ></td>
<td><input type="text" name="arraydescripcion[]" class="descripcion" value=<? echo $row[2]; ?> ></td>
<td><input type="text" name="arrayprecio[]" class="precio" value=<? echo $row[3]; ?> /></td>
<td><br></td>
</tr>
<? }
?>
<tr>
<td><input type="text" name="cantidad" class="cantidad" /></td>
<td><input type="text" name="descripcion" class="descripcion" /></td>
<td><input type="text" name="precio" class="precio" /></td>
<td><input type="submit" name="mas" value="+" class="mas"></td>
</tr>
</table>
</form>
<?
if(empty($arraycantidad)) {echo"<p>Vacio</p>";}
else
{
foreach ($arraycantidad as $val)
{
echo $val;
}
}?>
</div>
</body>
</html>