Mysql
 sql >> Database >  >> RDS >> Mysql

Aggiunta di righe a mysql da campi del modulo jquery dinamico

Se hai più input di moduli con lo stesso nome e quel nome termina tra parentesi quadre doppie [] , i loro valori verranno trasformati in un array quando PHP popola $_POST dal modulo.

Quindi il tuo pulsante jQuery dovrebbe inserire una riga con campi denominati in questo modo:

<input type="text" name="item_name[]" value="" />
<input type="text" name="item_cost[]" value="" />
<input type="text" name="item_quantity[]" value="" />

Nel tuo codice PHP che accetta l'invio del modulo, puoi elaborare tutte le righe esistenti in questo modo:

//I used `item_name` as the loop termination condition, 
//but any of the 3 keys would have worked
for ($i = 0; $i < count($_POST['item_name']); $i++) {
    $item_name = $_POST['item_name'][$i];
    $item_cost = $_POST['item_cost'][$i];
    $item_quantity = $_POST['item_quantity'][$i];

    //here, inside the loop, run your database query using the 3 values above    
}