Notice: Undefined index: edad in C:\wamp\www\luis\datos1.php on line 12
Notice: Undefined index: clave in C:\wamp\www\luis\datos1.php on line 13
te conectaste
<html>
<head><title>base de datos</title></head>
<body>
<?php
$edad = $_POST["edad"];
$clave = $_POST["clave"];
$server="localhost";
$conex=mysql_connect($server,"root","")
or die ("Error enl a coneccion con el servidor, intentelo nuevamente mas tarde");
if (!mysql_select_db("luisa",$conex)){
echo "Error en la coneccion con la base de datos, se encuentra temporalmente fuera de linea, intentelo nuevamente mas tarde";}
else {
echo "te conectaste";
}
mysql_select_db("luisa",$conex);
mysql_query(" insert into luisa1 (edad,clave) values ('$edad','$clave')");
?>
</body>
</html>
