Ecco qui:
Codice PHP:
<?php
$mittente=$mail;
$destinatario = $mail;
$header = "MIME-Version: 1.0\r\n";
$header .= "Content-type: text/html; charset=iso-8859-1\r\n";
$header .= "From: $nome $cognome - $mittente<$mittente> \r\n";
//$header .= "Reply-to: collega@mioserver.it\r\n";
//$reply = "Reply-to: $mittente\r\n";
$oggetto = "Richesta Preventivo";
$query=mysql_query("select * From carrello")or die ("Query non valida:" . mysql_error());
$num1=mysql_num_rows($query);
$messaggio =
<<<echo
<html>
<body>
<font size="+3" color="#00FF00" face="Times New Roman, Times, serif"><b>
<div align="right">Salve Serineon<br><br></div></b></font>
<b>Oggetto: Richiesta Preventivo</b><br><br>
echo;
$messaggio = <<<echo
<html>
<bod>
<font size="+3" color="#00FF00" face="Times New Roman, Times, serif"><b>
<div align="right">Salve Serineon<br><br></div></b></font>
<b>Oggetto: Richiesta Preventivo</b><br><br>
<table align="center" cellpadding="0" cellspacing="0" width="940" border="0">
<tr class="cella2">
<td width="101"><strong>Id Prodotto </strong></td>
<td width="682" height="30"><strong>Nome Prodotto </strong></td>
<td width="70"><strong>Q.tà </strong></td>
</tr>
echo;
$tot1=0;
for($i=0;$i<$num1;$i++)
{
$id=mysql_result($query,$i,\"id\");
$id_art=mysql_result($query,$i,\"id_art\");
$id_prod=mysql_result($query,$i,\"id_prod\");
$nome=mysql_result($query,$i,\"nome_prod\");
$prezzo=mysql_result($query,$i,\"prezzo\");
$quantita=mysql_result($query,$i,\"quantita\");
$stampa=mysql_result($query,$i,\"stampa\");
if($stampa!=\"serigrafia\")
{
$stampa=$stampa.\" :Preventivo\";
}
$totale=$prezzo*$quantita;
$iva=$totale*0.2;
$tot=$totale+$iva;
$tot1=$tot1+$tot;
?>
<tr>
<td><?php echo $id_prod; ?></td>
<td><?php echo $nome;?></td>
<td><?php echo $quantita; ?></td>
</tr>
<?php }
//$Prezzo=mysql_query(\"select sum(totale) as Prezzo from carrello where ip='$ip' \");
//$Prezzo1=mysql_result($query,\"totale\")
?>
<tr>
<td colspan=\"3\" align=\"right\"> </td>
</tr>
<tr>
<td colspan=\"3\" align=\"right\" bgcolor=\"#FFFF00\"> </td>
</tr>
</table>
</body>
</html>
</body>
</html>";
$destinatario1="gasparroa@tiscali.it";
mail($destinatario, $oggetto, $messaggio, $header);
mail($destinatario1, $oggetto, $messaggio, $header);
echo "<br><br><br>Mail inviata con successo<br><br><br><br>";
?>
Usa questo codice invece di mettere \" quando devi fare lunghe cose!!! XD
Codice PHP:
$var = <<<echo
testo in "html" anche con " ciao " ma senza \" XDDD
echo;
echo $var;