Ver Mensaje Individual
  #3 (permalink)  
Antiguo 01/10/2008, 07:43
Avatar de Sandino
Sandino
 
Fecha de Ingreso: octubre-2006
Mensajes: 277
Antigüedad: 18 años, 1 mes
Puntos: 1
Respuesta: precarga de consulta

bien gracias por responde,encontre el codigo pero no me funciona.No me tira ningun error pero no hace lo q debe hacer por favor orienteme. tengo algo como esto.
Código PHP:
<head>
<title>SAE - Sistema de Administraci&oacute;n Escolar</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="<?=$_ESTILO?>" rel="stylesheet" type="text/css">
<script language="javascript" type="text/javascript">
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 Cargar(){
var contenido, preloader;
contenido = document.getElementById('contenido');
preloader = document.getElementById('preloader');
ajax=NuevoAjax();
ajax.open("POST", "Subvencion_detalle.php",true);
ajax.onreadystatechange=function(){
    if(ajax.readyState==1){
        preloader.innerHTML = "Cargando...";
        //preloader.style.background = "url('loading.gif') no-repeat";
    }else if(ajax.readyState==4){
        if(ajax.status==200){
            contenido.innerHTML = ajax.responseText;
            preloader.innerHTML = "Cargado.";
            //preloader.style.background = "url('loaded.gif') no-repeat";
        }else if(ajax.status==404){
            preloader.innerHTML = "La página no existe";
        }else{
            preloader.innerHTML = "Error:".ajax.status;
        }
    }
}
ajax.send(null);
}
</script>
</head>
<body>
<div id="preloader">Este es el preloader</div>
<div id="contenido">
<? $sql_ins "consulta sql";
    
$result_ins =@pg_Exec($conn,$sql_ins);
?>
</div>