Pruebate esta prueba que te he echo, aver si te convence...
index.php
Código html:
Ver original.texto_tb3{
color:red;
}
.texto_tb2{
color:blue;
}
function creaXHR(){
var xmlhttp=false;
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
xmlhttp = new XMLHttpRequest();
}
return xmlhttp;
}
function enviar_estudios(titulo , centro , especialidad , fecha_inicio , fecha_final, nivel, n){
objXHR_est = creaXHR();
url = "p.php?titulacion=" + titulo + "¢ro=" + centro + "&especialidad=" + especialidad + "&fecha_inicio=" + fecha_inicio + "&fecha_final=" + fecha_final + "&nivel=" + nivel;
if(objXHR_est){
objXHR_est.open("GET", url, true);
objXHR_est.onreadystatechange = function () {
if(objXHR_est.readyState == 4){
alert(objXHR_est.responseText)
var tabla = document.getElementById("est1");
var i = parseInt(document.getElementById("i").value);
document.getElementById("i").value = i+1;
var col1 = document.createElement("td");
var col2 = document.createElement("td");
var col3 = document.createElement("td");
var col4 = document.createElement("td");
var col5 = document.createElement("td");
var col6 = document.createElement("td");
var col7 = document.createElement("td");
col1.innerHTML = fecha_inicio +"-"+ fecha_final
col2.innerHTML = titulo
col3.innerHTML = especialidad
col4.innerHTML = nivel
col5.innerHTML = centro
col6.innerHTML = '
<img src="imagenes/lapiz_01.gif" style="cursor:pointer;" onClick="modificar_exp()">'
col7.innerHTML = '
<img src="imagenes/basura_01.gif" style="cursor:pointer;" onClick="eliminar_exp()">'
if (i%2==1) {
col1.className='texto_tb3'
col2.className='texto_tb3'
col3.className='texto_tb3'
col4.className='texto_tb3'
col5.className='texto_tb3'
col6.className='texto_tb3'
col7.className='texto_tb3'
}else{
col1.className='texto_tb2'
col2.className='texto_tb2'
col3.className='texto_tb2'
col4.className='texto_tb2'
col5.className='texto_tb2'
col6.className='texto_tb2'
col7.className='texto_tb2'
}
var row = document.createElement("tr");
row.appendChild(col1); // agrega la columna al renglon
row.appendChild(col2); // agrega la columna al renglon
row.appendChild(col3); // agrega la columna al renglon
row.appendChild(col4); // agrega la columna al renglon
row.appendChild(col5); // agrega la columna al renglon
row.appendChild(col6); // agrega la columna al renglon
row.appendChild(col7); // agrega la columna al renglon
//row.innerHTML = respuesta //contiene una cadena con los td
tabla.appendChild(row);
}
}
objXHR_est.send(null);
}else{
alert("L'objecte XMLHttpRequest no està disponible al seu navegador");
}
}
<input type="button" value="Add" onclick="enviar_estudios('titulo' , 'centro' , 'especialidad' , 'fecha_inicio' , 'fecha_final', 'nivel')"/> <input type="hidden" id="i" value='1'"/>
p.php
Código php:
Ver original<?PHP
header('Content-Type: text/xml; charset=ISO-8859-1'); //session_start();
$fecha_inicio=$_GET['fecha_inicio'];
$fecha_final=$_GET['fecha_final'];
$titulacion =$_GET['titulacion'];
$especialidad=$_GET['especialidad'];
$nivel =$_GET['nivel'];
$centro =$_GET['centro'];
$sql = "INSERT INTO movedb.estudios (
id_estudios,
nivel,
titulacion,
centro,
fecha_inicio,
id_candidato,
fecha_final,
cursando,
especialidad
)
VALUES (
NULL , '".$nivel."', '".$titulacion."', '".$centro."', '".$fecha_inicio."', '".$_SESSION['id_candidato']."', '".$fecha_final."', '".$cursando."', '".$especialidad."'
);";
//$i=$_SESSION['i'];
//$_SESSION['i'] = $_SESSION['i'] + 1;
$s = mysql_query($sql) or
die("Error al intentar seleccionar les dades de l'usuari"); echo "SQL INSERT OK: $sql";
//if ($s == 1){
//if (($i % 2) == 1){
//$respuesta = '
// <td style="background-color=\'LemonChiffon\'">'.$fecha_inicio.$i.' - '.$fecha_final.$i.'</td>|
// <td style="background-color=\'LemonChiffon\'">'.$titulacion.$i.'</td>|
// <td style="background-color=\'LemonChiffon\'">'.$especialidad.$i.'</td>|
// <td style="background-color=\'LemonChiffon\'">'.$nivel.$i.'</td>|
// <td style="background-color=\'LemonChiffon\'">'.$centro.$i.'</td>
//';
//echo $respuesta;
//}else{
//$respuesta = '
// <td style="background-color=\'Khaki\'">'.$fecha_inicio.$i.' - '.$fecha_final.$i.'</td>
// <td style="background-color=\'Khaki\'">'.$titulacion.$i.'</td>
// <td style="background-color=\'Khaki\'">'.$especialidad.$i.'</td>
// <td style="background-color=\'Khaki\'">'.$nivel.$i.'</td>
// <td style="background-color=\'Khaki\'">'.$centro.$i.'</td>
//';
//echo $respuesta;
//}
//}
?>
Ya me dices
Saludos,...