Hola tengo un problemilla con una parte del codigo que estoy componiendo para enviar un mensaje mediante php.
Este es el error:
Parse error: parse error, unexpected T_VARIABLE in compra_cursada.inc.php on line 118
y este es el codigo:
Código:
<tr>
<td width='118' align='center' style='font-weight:bold; text-decoration:underline'>Producto</td>
<td width='116' align='center' style='font-weight:bold; text-decoration:underline'>Unidades</td>
<td width='153' align='center' style='font-weight:bold; text-decoration:underline'>Precio unidad</td>
</tr>";
while ($datos_producto = mysql_fetch_array($productos) )
{
$codigo = $datos_producto["cod_articulo"];
$cantidad = $datos_producto["cantidad"];
$precio = $datos_producto["precio_unitario"];
$mensaje = $mensaje ."<tr> //esta es la linea 118
<td width='118' align='center' style='font_size:11'>".$codigo."</td>
<td width='116' align='center' style='font_size:11'>".$cantidad."</td>
<td width='153' align='center' style='font_size:11'>".$precio." €</td>
</tr>";
}//while
$mensaje = $mensaje . "</table><hr align='left' width='300' size='1'>Gastos de envio: 6 €<br>Total: 306 €";
Gracias por la ayuda!!!