Comunidad de diseño web y desarrollo en internet online

Enviar un array bidimencional a php

Citar            
MensajeEscrito el 06 Oct 2015 05:08 pm
Saludos comunidad necesito enviar un arreglo bidimencional a mi base de datos pero no se como recibirlo en php
estos son mis codigos mis campos
<input type='text' readonly='readonly' id='fecha' name='fecha[][]' class='compa2' value='$row[0]'/></td>";
Este codigo envia los datos, todo funciona bien asta aqui.

$('.clsGuardar2').live('click', function () {
$('#form_ejercicio').submit(function (msg) {
alert($(this).serialize()); // check to show that all form data is being submitted
$.post("ggrillamayor.php", $(this).serialize(), function (data) {
alert(data); //post check to show that the mysql string is the same as submit
});
return false; // return false to stop the page submitting. You could have the form action set to the same PHP page so if people dont have JS on they can still use the form
});
});

Aqui es el problema..
Este es el codigo con el que recibo mi array la cual no se en donde estoy haciendo mal para insertar varios datos en my tabla de mysql

<?php
$data = array_filter($_POST);
echo '<pre>';
$cone_tpdh = mysql_connect("localhost", "root", "alberto2791") or die("No se pudo realizar la conexion");
mysql_select_db("condata", $cone_tpdh) or die("ERROR con la base de datos");
print_r($data);
foreach ($data as $row) {
$sql_insertmayor = "INSERT INTO condata.t_mayor (fecha,cod_cuenta,cuenta,deb,hab,saldo,t_bl_inicial_idt_bl_inicial)
VALUES (
'".$row[0]."',
'".$row[1]."',
'".$row[2]."',
'".$row[3]."',
'".$row[4]."',
'".$row[5]."',
'".$row[6]."'
)";
mysql_query($sql_insertmayor,$cone_tpdh);
}

echo '</pre>';

Por AndresCondo

2 de clabLevel



Genero:Masculino  

firefox
Citar            
MensajeEscrito el 09 Oct 2015 04:56 pm
Pues falta que nos digas que datos llegan antes de insertarlos, y que datos son los que al final insertan.

Por elporfirio

Claber

652 de clabLevel

1 tutorial

Genero:Masculino  

FullStack Web Developer

chrome

 

Cristalab BabyBlue v4 + V4 © 2011 Cristalab
Powered by ClabEngines v4, HTML5, love and ponies.