en una pagina llamada prueba.php tengo esto
Código HTML:
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Documento sin título</title> <script src="/js/prototype.js" type="text/javascript"></script> <script type="text/javascript"><!-- $('#nick').focusout( function(){ if($('#nick').val()!= ""){ $.ajax({ type: "POST", url: "ajax_comprobar_nick.php", data: "nick="+$('#nick').val(), beforeSend: function(){ $('#msgUsuario').html('<img src="loader.gif"/> verificando'); }, success: function( respuesta ){ if(respuesta == '1') $('#msgUsuario').html("Disponible"); else $('#msgUsuario').html("No Disponible"); } }); } }); </script> </head> <body> <p> <form id="frmRegistro"> <label> Nick: </label> <input type="text" id="nick" name="nick"/><div id="msgUsuario"></div> <label> Nombre: </label> <input type="text" id="nombre" name="nombre"/> </form> <p> </p> </body> </html>
y en otra pagina llamada ajax_comprobar_nick.php
Código PHP:
include("conex.php");
$link=Conectarse();
$nick = $_POST["nick"];
$consulta = "select * from c_costos where cc_costos = '$nick'";
$result = mysql_query($consulta,$link);
if( $result->num_rows > 0)
echo 0;
else
echo 1;
estos fueron codigos tomados de la web pero no corre y ya he buscado miles de vueltas para hacer que me de el resultado.