GLORIOSO
ajax.responseText; !!!!
este es el codigo que tengo ... ahora como lo hago para mas variables ?
Como le doy arrays a ajax.responseText; ???
index.php
Código PHP:
...
<input type="text" onBlur="completar(this.value)">
...
load-ajax.js
Código:
function nuevoAjax()
{
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 completar(R)
{
var ajax=nuevoAjax();
ajax.open("GET", "AJAX/load-carga.php?valor="+R, false);
ajax.send(null);
document.getElementById('valor1').value=ajax.responseText;
}
load-carga.php
Código PHP:
<?php
$ide=trim($_GET['valor']);
require("BDconecta.php");
$sql = mysql_query("SELECT * FROM table WHERE valor='$ide'") or die (mysql_error());
$row= mysql_fetch_assoc($sql);
echo "".$row['valor1']."";
?>