jomel24
Usuario Novato
Usuario Novato

Buen día compañeros de antemano un agradecimiento por delante tengo este problema tengo varios archivos de php que quiero insertar en mi pagina web ,  registro e identificación de usuarios bueno ya hice varios códigos  y los he revisado bastante y no se si es por falta de sueño o no pero no logro ver los errores no se si se conecta y registra en mysql (aclaro no se nada php ni mysql estoy en parbulitos jejeje ) pero bueno estos son los codigos 

con este no tengo problemas  pero no se si graba en mysql los datos

registro.html

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>

<head>

  <meta content="text/html; charset=ISO-8859-1"

 http-equiv="content-type">

  <title>FORMULARIO DE REGISTRO</title>

</head>

<body style="color: rgb(62, 251, 0); background-color: rgb(0, 0, 0);"

 link="#ffcc00" alink="#000099" vlink="#ff0000">

<br>

<div style="text-align: center;"><strong>Formulario

de registro de usuarios</strong></div>

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

&nbsp; &nbsp; &nbsp; &nbsp; <br>

<div style="text-align: center;">&nbsp; Inserte los datos que te pido y

en breve nos ponemos en contacto<br>

</div>

<form name="contacto" method="post" action="registro.php"><strong>NOMBRE:</strong>

  <br>

  <input name="nombre" value="" size="50" type="text">

  <br>

  <br>

  <strong>APELLIDO:</strong>

  <br>

  <input name="apellido" size="50" type="text">

  <br>

  <br>

  <strong>NOMBRE DE USUARIO</strong>

  <br>

  <input name="usuario" size="50" type="text">

  <br>

  <br>

  <strong>CONTRASE&Ntilde;A</strong>

  <br>

  <input name="cont" size="50" type="password">

  <br>

  <br>

  <strong>E-MAIL:</strong>

  <br>

  <input name="email" size="" 50="" type="text">

  <br>

  <br>

  <input type="submit" name="submit" value="Enviar datos" >

  <p></p>

</form>

</body>

</html>

registro.php

<head>

<title>FELICIDADES</title>

<strong>SU REGISTRO SE HA COMPLETADO CON EXITO</strong>

<br>

<?

$host="localhost";

$user="root";

$password="30";

$db="registrados";

$enlace=mysql_connect ($host,$user,$password);

mysql_select_db($db,$enlace);

$consulta = mysql_query("insert into usuarios (nombre,apellido,usuario,contraseña,email) values ('$nombre','$apellido','$usuario','$cont',$email'");

?>

en este otro tengo un problema con los usuarios registrados aunque no lo esten pueden entrar a la pagina les pongo los codigos 

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>

<head>

  <title>Usuarios Registrados</title>

</head>

<body style="color: rgb(51, 204, 0); background-color: rgb(0, 0, 0);"

 color="#303030" link="#3333ff" alink="#33ccff" vlink="#ff0000">

<font face="tahoma">

<font size="4"></font></font>

<p align="center"><font face="tahoma"><font size="4"><big><big><strong

 style="color: rgb(51, 204, 0);"> I D E N T I F I C A T E

</strong></big></big> <br>

</font></font></p>

<p align="center"></p>

<p align="center"></p>

<p align="center"></p>

<p align="center"><font face="tahoma"><font size="4"><br>

</font></font></p>

<form name="" contacto="" method="post" action="identifica.php">

  <div style="text-align: center;"><small><small></small></small></div>

  <p style="text-align: center;"><font face="tahoma"><font size="4"><small><small><strong

 style="color: rgb(51, 204, 0);"> N O M B R E &nbsp; &nbsp;&nbsp; D E

&nbsp; &nbsp; U S U A R I O :

  </strong><br>

  <input size="50" name="usuario" type="text"> <br>

  <br style="color: rgb(51, 204, 0);">

  </small></small> <strong style="color: rgb(51, 204, 0);"><small><small>

C O N T R A S E &Ntilde; A :</small></small>

  </strong><br>

  <input size="50" name="cont" type="password">

  <br>

  <br>

  <input name="submit" value="Enter" type="submit"></font></font></p>

  <p align="left"><font face="tahoma"><font size="4"></font></font></p>

  <p align="left"><font face="tahoma"><font size="4"></font></font></p>

  <p align="left"><font face="tahoma"><font size="4">No estas

registrado ??? Aqui &nbsp;</font></font></p>

  <p align="left"><font face="tahoma"><font size="4">No sabes que es

esta web ??? vista mi blog</font></font></p>

</form>

</body>

</html>

 identifica.php  aqui es donde tengo problemas , por que aun asi pueden entrar

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html lang="es-mx">

<head>

  <title>PRESENTACION</title>

  <meta content="text/html; charset=ISO-8859-1"

 http-equiv="content-type">

</head>

<body style="color: rgb(51, 102, 255); background-color: rgb(0, 0, 0);"

 link="#ff0000" alink="#cccccc" vlink="#ffff00">

<div style="text-align: center;"><big><big><big>Bienvenidos

se te estra&ntilde;a </big></big></big><br>

</div>

<br>

<big><big><br>

<br>

<br>

Descargas<br>

<br>

Juegos<br>

<br>

Imagenes&nbsp;<br>

<br>

Musica<br>

<br>

Manuales<br>

<br>

Foros<br>

<br>

Ftp<br>

<br>

Mis Archivos <br>

<br>

Preguntas<br>

<br>

Peticiones<br>

<br>

<br>

</big></big><br>

<br>

<br>

<br>

<br>

<br>

<br>

<?

$host="localhost";

$user="root";

$password="30";

$db="registrados";

$enlace= mysql_connect($host,$user,$password);

mysql_select_db($db,$enlace);

$cont2=md5($cont);

$sql="SELECT nombre FROM usuarios WHERE usuario LIKE '$usuario' and contraseña LIKE '$cont2'";

$consulta=mysql_query($sql, $enlace);

?>

<br>

<br>

<br>

<br>

<br>

RECOMIENDAME NO TE CUESTA NADA<br>

</body>

</html>

en mysql tengo:

Campo

Tipo

Cotejamiento

Atributos

Nulo

Predeterminado

Extra

Acción

id

int(11)

No

auto_increment

nombre

varchar(30)

utf8_spanish_ci

No

apellido

varchar(30)

utf8_spanish_ci

No

usuario

varchar(30)

utf8_spanish_ci

No

contraseña

varchar(30)

utf8_spanish_ci

No

email

varchar(30)

utf8_spanish_ci

No

 Marcar todos/as / Desmarcar todos Para los elementos que están marcados:       

pueden ayudarme y decirme donde fallo , se los agradezco por adelantado que pasen un buen dia

Avatar Image
@man / @woman
@man / @woman

¿ tienes instalado en tu pc un servidor web que interprete php y un servidor mysql?

ATENCIÓN: Este tema no tiene actividad desde hace más de 6 MESES,
te recomendamos abrir un nuevo tema en lugar de responder al actual
Opciones:
Ir al subforo:
Permisos:
TU NO PUEDES Escribir nuevos temas
TU NO PUEDES Responder a los temas
TU NO PUEDES Editar tus propios mensajes
TU NO PUEDES Borrar tus propios mensajes
Temas similares
No se han encontrado temas similares