13/09/2010, 13:16
|
| | | Fecha de Ingreso: septiembre-2010 Ubicación: Iztapalapa
Mensajes: 146
Antigüedad: 14 años, 3 meses Puntos: 1 | |
Respuesta: Consulta de BD Saliendo de un campo bueno al parecer no me esta agarrando nada esta ejecutando el echo pero no me aparece el valor que pongo en el campo por ejemplo puse:
<?PHP
$FOLIO_01=trim($_POST['FOLIO_01']);
echo '<b>mi folio es: ' .$FOLIO_01. ' <br/>';
?>
y cuando lo ejecuto en la pagina nada mas me aparece
mi folio es:
entonces no esta agarrando nada y no se por que, me puedes decir cual sera el error.
este es el codigo de mi paguina: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript">
//funcion para consultar el folio
function creaAjax(){
var objetoAjax=false;
try {
/*Para navegadores distintos a internet explorer*/
objetoAjax = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
/*Para explorer*/
objetoAjax = new ActiveXObject("Microsoft.XMLHTTP");
}
catch (E) {
objetoAjax = false;
}
}
if (!objetoAjax && typeof XMLHttpRequest!='undefined') {
objetoAjax = new XMLHttpRequest();
}
return objetoAjax;
}
function FAjax (valores)
{
var ajax=creaAjax();
var capaContenedora = document.getElementById('elDiv');
/*Creamos y ejecutamos la instancia si el metodo elegido es POST*/
ajax.open ('$_POST','consulta.php', true);
ajax.onreadystatechange = function() {
if (ajax.readyState==1) {
capaContenedora.innerHTML="Cargando.......";
}
else if (ajax.readyState==4){
if(ajax.status==200)
{
capaContenedora.innerHTML=ajax.responseText;
}
else if(ajax.status==404)
{
capaContenedora.innerHTML = "La direccion no existe";
}
else
{
capaContenedora.innerHTML = "Error: ".ajax.status;
}
}
}
ajax.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
ajax.send(valores);
return;
}
</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
</head>
<body>
<table width="950" align="center">
<tr>
<td style="border-bottom:1px dashed #A60C00"><strong>2. FOLIOS</strong></td>
</tr>
<tr>
<td style="border-bottom:1px dashed #A60C00"><div align="right" id="elDiv">FOLIO DE LA VIVIENDA</div></td>
</tr>
<tr>
<td style="border-bottom:1px dashed #A60C00"><div align="right">
<input name="FOLIO_01" type="text" id="FOLIO_01" onkeyup = "this.value=this.value.toUpperCase();if (this.value.length == this.getAttribute('maxlength')){FOLIO_02.focus()}" maxlength="9" onblur="FAjax(this.value)" />
</div></td>
</tr>
<tr>
<td style="border-bottom:1px dashed #A60C00"><div align="right">FOLIO DE LA VIVIENDA BASE</div></td>
</tr>
<tr>
<td style="border-bottom:1px dashed #A60C00"><div align="right">
<input name="FOLIO_02" type="text" id="FOLIO_02" onkeyup = "this.value=this.value.toUpperCase();if (this.value.length == this.getAttribute('maxlength')){CVE_ENT.focus()}" maxlength="9"/>
</div></td>
</tr>
<tr>
<td style="border-bottom:1px dashed #A60C00"><div align="center">
<input type="submit" name="Guardar" value="Guardar" />
</div></td>
</tr>
</table>
</body>
</html>
la verdad no se por que no me manda nada
espero que me puedas ayudar |