buenas tengo este formulario:
html>
<head>
<title>insertar datos de usuarios</title>
</head>
<body>
Introduzca sus datos para darse de alta
<form action="creadora.php" method=post>
<p>Introduzca sus datos:<br />
Nombre: <input type="text" name="nombre" size="20" maxlength="255" /><br />
Apellido: <input type="text" name="apellido" size="20" maxlength="255" /><br />
Fecha de Nacimiento: <input type="date" name="nacimiento" size="20" maxlength="255" /><br />
Email: <input type="text" name="email" size="25" maxlength="255" /><br />
Nombre de usuario: <input type="text" name="usuario" size="20" maxlength="255" /><br />
Contraseña: <input type="text" name="contrasenia" size="20" maxlength="255" /><br />
<input type="submit" value="ALTA" /></p>
</body>
</html>
y se lo paso a creadora... Lo que quiero es que en creadora me mire si ya hay un usuario registrado con ese nombre y ese apellido para evitar que un usuario se registre dos veces.
gracias
gracias