Problemas en el selectYou have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '')' at line 2
</head>
<body>
<form action="" method="post">
Ingrese nombre:
<input type="text" name="nombre"><br>
Ingrese mail:
<input type="text" name="mail"><br>
Ingrese la fecha de nacimiento (dd/mm/aaaa):
<input type="text" name="dia" size="2">
<input type="text" name="mes" size="2">
<input type="text" name="anio" size="4">
<br>
<input type="submit" value="Registrar">
</form>
</body>
</html>
<?php
$conexion=mysql_connect("localhost","","") or
die("Problemas en la conexion");
mysql_select_db("alumno",$conexion) or
die("Problemas en la seleccion de la base de datos");
$fechanacimiento=$_REQUEST['anio']."-".$_REQUEST['mes']."-".$_REQUEST['dia'];
mysql_query("insert into alumnos(nombre,mail,fechanac) values
('$_REQUEST[nombre]','$_REQUEST[mail],'$fechanacimiento')", $conexion) or
die("Problemas en el select".mysql_error());
mysql_close($conexion);
echo "registrado.";
?>