este es mi codigo q trato de hacer.. pero no me sale:
----frmregistrousuario.php----
.......
........
Código PHP:
<body onload="myajax = new isiAJAX();">
<form id="form1" name="form1" method="post" action="registrousuario.php" enctype="multipart/form-data" onsubmit="return comprobar(this) && Verify(this);">
<h4 align="center" class="Estilo1">REGISTRO DE NUEVO USUARIO </h4><table width="479" border="0" align="center">
<tr>
<td width="165" height="40"><div align="right"><em><strong>*Login : </strong></em></div></td>
<td width="298"><label>
<input name="txtlogin" type="text" id="txtlogin" style="border-width: 2px; border-style: solid; font-size:8pt; color: black" onBlur="myajax.Run('ConsultasUsuario_AJAX.php" onKeyPress="return ENTER(event);" maxlength="8"/>
<br />
<span class="Estilo6">No se aceptan caracteres especiales (_ / % &.....). 8 Caracteres como Maximo. </span></label></td>
--COnsultaUsuarioAJAX.php---
Código PHP:
<?php
include_once("../negocio/usuario.php");
$us = new Usuario();
$us->login = $_POST['txtlogin'];
if($us->BuscarLogin_existente())
{
echo 'alert("El Usuario Ya Existe ")';
}
?>