Código PHP:
Ver original
$titulo = 'Envio de mail'; $mensaje = ' <html> <head> </head> <body> </body> </html> '; $cabeceras = 'MIME-Version: 1.0' . "\r\n"; $cabeceras .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $cabeceras .= 'From: $remitente ' . "\r\n";
Quiero saber si en $mensaje =
puedo poner codigo php? en ese caso como lo hago?
Gracias!
El codigo que quiero poenr es el siguiente:
Código PHP:
Ver original
<?php $total = $_POST['total']; for($x=0;$x<=$total;$x++){ if($_POST['checkbox_'.$x]=='1'){ $carro[$cant]['id'] = $_POST['id_'.$x]; $carro[$cant]['cantidad'] = $_POST['precio_'.$x]; } } $_SESSION['carro']=$carro; ?> <table width="500" border="1" cellpadding="1" cellspacing="1"> <tr> <th>Producto</th> <th>Cantidad</th> <th>Precio</th> <th>SubTotal</th> <th> </th> </tr> <?php for($x=0;$x<=$cantidad;$x++){ $SQL = "SELECT * FROM precios WHERE id = ".$carro[$x]['id'].";"; $subtotal = $f['precio']*$carro[$x]['cantidad']; if($f['id']){ ?><tr> <td><?php echo $f['nombre'];?></td> <td><?php echo $carro[$x]['cantidad'];?></td> <td><?php echo $f['precio'];?></td> <td><?php echo $subtotal;?></td> <td> </td> </tr> <?