azz...dopo qualche piccola svista tutto perfetto.
ma il totale è zenza zeri 
adesso ti chiedo:
in pagina send_ord.php mi costruisco una form semplice da compilare e poi sotto replico il carrello.
ma come diavolo invio i "campi dinamici" alla funzione mail? io ho sempre usato
Codice PHP:
// L'INDIRIZZO DEL DESTINATARIO DELLA MAIL
$to = "webmaster@progedit.com";
//errori
$back = "<font class='estratto'>[url='javascript:history.go(-1);']Torna indietro[/url]</font>";
$errore = "<center>
<font class='breve'>Si sono verificati i seguenti errori:</font>\n</center>";
//semplifico le var
$nomex = trim(stripslashes($_POST["nome"]));
$emailx = trim(stripslashes($_POST["email"]));
$oggettox = trim(stripslashes($_POST["oggetto"]));
$testox = trim(stripslashes($_POST["testo"]));
// IL SOGGETTO DELLA MAIL
$subject = "Email da un visitatore: ";
$subject .= "$oggettox";
// COSTRUIAMO IL CORPO DEL MESSAGGIO
$body = "Ecco il messaggio inviato dal visitatore:\n\n";
$body .= "Nome: " . $nomex . "\n";
$body .= "Email: " . $emailx . "\n\n";
$body .= "Oggetto: " . $oggettox . "\n\n";
$body .= "Testo:\n" . $testox . "\n";
// INTESTAZIONI SUPPLEMENTARI
$headers = "From: Modulo utenti<modulo@progedit.com>";
if ($nomex == '') {
$errore .= "<center>
<font class='breve'>Hai dimenticato di inserire il tuo nome</font>
$back</center>";
echo $errore;
die();
}
if ($oggettox == '') {
$errore .= "<center>
<font class='breve'>Hai dimenticato di inserire un oggetto</font>
$back</center>";
echo $errore;
die();
}
if ($testox == '') {
$errore .= "<center>
<font class='breve'>Hai dimenticato di inserire il testo</font>
$back</center>";
echo $errore;
die();
}
//controllo sul campo email
if(ereg(".+\@.+\..+", $emailx) && (ereg("^[a-zA-Z0-9_@.-]+$", $emailx)) && ($emailx != '')) {
// INVIO DELLA MAIL
if(@mail($to, $subject, $body, $headers)) { // SE L'INOLTRO E' ANDATO A BUON FINE...
echo "<center>
<font class='breve'>La mail è stata inviata con successo
La nostra redazione ti risponderà al più presto
Grazie</font>
$back</center>";
} else {// ALTRIMENTI...
echo "<center>
<font class='breve'>Si sono verificati dei problemi nell'invio della mail</font>
$back</center>";