01/03/2012, 07:05
|
| | | Fecha de Ingreso: septiembre-2010 Ubicación: München
Mensajes: 2.445
Antigüedad: 14 años, 2 meses Puntos: 331 | |
Respuesta: Insertar array asociativo con php y mysql ?????
Código PHP:
Ver original<?php function creaSQL($datos) { $sql = "INSERT INTO db.table ("; foreach($datos as $key => $value) { $sql .="'$key',"; } $sql .=") VALUES ("; foreach($datos as $key => $value) { $sql .="'$value',"; } $sql .= ");"; return $sql; } $datos = array('campo1' => 'valor1', 'campo2' => 'valor2'); $sql = creaSQL($datos); echo $sql; //Conectar //Hacer query con $sql como parámetro ?>
__________________ Fere libenter homines, id quod volunt, credunt. |