Buona sera a tutti.
Sto cercando questa soluzione da tempo, ma non la trovo. Premetto che sono un neofita dell'argomento php e html.
Ho creato, modificandolo, un javascript che aggiunge righe in un form.
Ora il problema è questo, aggiungendo righe i "name" diventano per esempio "nome1", "name2", "name3", etc, come posso inviarmi via email, con una pagina php, tutti i dati generati da questo form?
Vi posto il codice:
mentre il php è questo:
Grazie mille
Sto cercando questa soluzione da tempo, ma non la trovo. Premetto che sono un neofita dell'argomento php e html.
Ho creato, modificandolo, un javascript che aggiunge righe in un form.
Ora il problema è questo, aggiungendo righe i "name" diventano per esempio "nome1", "name2", "name3", etc, come posso inviarmi via email, con una pagina php, tutti i dati generati da questo form?
Vi posto il codice:
HTML:
<SCRIPT language="javascript">
var num=1
function addRow(tableID) {
var table = document.getElementById(tableID);
var rowCount = table.rows.length;
var row = table.insertRow(rowCount);
var cell1 = row.insertCell(0);
var element1 = document.createElement("input");
element1.type = "checkbox";
cell1.appendChild(element1);
var cell2 = row.insertCell(1);
cell2.innerHTML = rowCount + 1;
var cell3 = row.insertCell(2);
var element2 = document.createElement("input");
element2.type = "text";
element2.name = "cod"+num;
element2.placeholder = "Codice prodotto";
cell3.appendChild(element2);
var cell3 = row.insertCell(3);
var element2 = document.createElement("input");
element2.type = "text";
element2.name = "des"+num;
element2.placeholder = "Descrizione";
cell3.appendChild(element2);
var cell3 = row.insertCell(4);
var element2 = document.createElement("input");
element2.type = "text";
element2.name = "forma"+num;
element2.placeholder = "Formato";
cell3.appendChild(element2);
var cell3 = row.insertCell(5);
var element2 = document.createElement("input");
element2.type = "text";
element2.name = "quant"+num;
element2.placeholder = "Quantità";
cell3.appendChild(element2);
}
function deleteRow(tableID) {
try {
var table = document.getElementById(tableID);
var rowCount = table.rows.length;
for(var i=0; i<rowCount; i++) {
var row = table.rows[i];
var chkbox = row.cells[0].childNodes[0];
if(null != chkbox && true == chkbox.checked) {
table.deleteRow(i);
rowCount--;
i--;
}
}
}catch(e) {
alert(e);
}
}
</SCRIPT>
</head>
<body>
<h1>Ordine</h1>
<form id="form1" name="form1" method="post" action="invio.php">
<INPUT type="button" value="Aggiungi una Riga" onclick="addRow('dataTable')" />
<INPUT type="button" value="Cancella una Riga" onclick="deleteRow('dataTable')" />
<TABLE id="dataTable" width="350px" border="1">
<TR>
<TD><INPUT type="checkbox" name="chk"/></TD>
<TD> 1 </TD>
<TD> <INPUT type="text" name="cod" id="cod" placeholder="Codice prodotto"> </TD>
<TD> <INPUT type="text" name="des" id="des" placeholder="Descrizione"/> </TD>
<TD> <INPUT type="text" name="forma" id="for" placeholder="Formato"/> </TD>
<TD> <INPUT type="text" name="quant" id="quant" placeholder="Quantità"/> </TD>
</TR>
</TABLE>
<input type="submit" name="Invia ordine" id="Invia ordine" value="Invia Ordine" />
</form>
<p> </p>
</body>
</html>
PHP:
<?php
$cod=$_POST[cod];
$des=$_POST[des];
$forma=$_POST[forma];
$quant=$_POST[quant];
$destinatario = "[email protected]";
$oggetto = "Ordine";
$messaggio = "Codice articolo: $cod\n";
$messaggio .= "Descrizione: $des\n";
$messaggio .= "Formato: $forma\n";
$messaggio .= "Quantità: $quant\n";
$da = $email;
$intestazione = "From: $da";
mail($destinatario,$oggetto,$messaggio,$intestazione);
?>
Grazie mille