Estoy creando un bd en My SQL pero al insetar los datos me pone: datos insertado pero no aparecen después en la base:
nombre de la base = cursobd(tabla= cursotable)
codigos(todos en la misma carpeta):
registrodeusuarios.php:
registro.php:
conexion.php:
nombre de la base = cursobd(tabla= cursotable)
codigos(todos en la misma carpeta):
registrodeusuarios.php:
Código (php) [Seleccionar]
<html>
<body>
<form action="registro.php" method="post" name="form">
<table width="200" border="0">
<tr>
<td>Nombre</td>
<td><input type="text" name="nombre" /></td>
</tr>
<tr>
<td>Apellido</td>
<td><input type="text" name="apellido" /></td>
</tr>
<tr>
<td>Password</td>
<td><input type="password" name="pw" /></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" value="Insertar datos" /></td>
</tr>
</table>
</body>
</html>
registro.php:
Código (php) [Seleccionar]
<?php
include("conexion.php");
if(isset($_POST['nombre']) && !empty($_POST['nombre']) &&
isset($_POST['apellido']) && !empty($_POST['apellido']) &&
isset($_POST['pw']) && !empty($_POST['pw']))
{
$conexion = mysql_connect($host,$user,$pw) or die("problema al conectar el host");
mysql_select_db($bd,$conexion) or die("problema de conexion");
mysql_query("INSERT INTO cursotable (NOMBRE,APPELLIDO,PW)
VALUES ('$_POST[nombre]','$_POST[apellido]','$_POST[pw]')",$conexion);
echo"Datos insertados";
}else{
echo "problema al insertar datos";
}
?>
conexion.php:
Código (php) [Seleccionar]
<?php
$host = "localhost";
$user = "root";
$pw = "mipass";
$bd = "cursobd";
?>