Código PHP:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Alta</title>
</head>
<body>
<?php
$hoy = date('Y-m-d');
echo $hoy;
$mysql = new mysqli("localhost", "root", "","rsrv");
if ($mysql->connect_error)
die('Problemas con la conexion a la base de datos');
$mysql->query("insert into habitaciones(singles,dobles,dptos,suite,Fecha) values ('$_REQUEST[singles]','$_REQUEST[dobles]','$_REQUEST[dptos]','$_REQUEST[suite]','$_REQUEST[hoy]')") or
die($mysql->error);
$mysql->close();
echo 'El nuevo rubro se almacenó';
echo $_REQUEST[hoy];
?>
<br>
</body>
</html>