Ver Mensaje Individual
  #1 (permalink)  
Antiguo 25/01/2007, 13:06
Avatar de jacin
jacin
 
Fecha de Ingreso: enero-2007
Ubicación: Alicante
Mensajes: 62
Antigüedad: 17 años, 10 meses
Puntos: 2
Exclamación Problemilla!!

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." &euro;</td>
</tr>";
	 }//while
							  
$mensaje = $mensaje . "</table><hr align='left' width='300' size='1'>Gastos de envio: 6 &euro;<br>Total: 306 &euro;";
Gracias por la ayuda!!!