Hay alguna forma en que automaticamente pueda capturar la fecha y hora, mostrarla en pantalla y que cuando de un clic en un boton me la guarde automaticamente en la base de datos sin que estos valores sean modificados por el usuario?
Tengo este formulario donde puedo digitarlo, pero la idea es que estos campos ya capturen automatica nte en sus espacio hora y fecha, pero que el usuario no me pueda cambiar los valores, solo que le de insertar y listo.
Código PHP:
<?php require_once('../Connections/conex.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO consecutivos (Fecha, Hora) VALUES (%s, %s)",
GetSQLValueString($_POST['Fecha'], "date"),
GetSQLValueString($_POST['Hora'], "date"));
mysql_select_db($database_conex, $conex);
$Result1 = mysql_query($insertSQL, $conex) or die(mysql_error());
$insertGoTo = "auxiliar.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
</head>
<body>
<?
$Fecha= date('Y-m-d');
$Hora= date('H:i:s');
echo "Fecha: ".$Fecha;
echo "<br>";
echo "Hora: ".$Hora;
?>
<form action="<?php echo $editFormAction; ?>" method="post" name="form1" id="form1">
<table align="center">
<tr valign="baseline">
<td nowrap="nowrap" align="right">Fecha:</td>
<td><input type="text" name="Fecha" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">Hora:</td>
<td><input type="text" name="Hora" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right"> </td>
<td> </td>
</tr>
</table>
<input type="hidden" name="MM_insert" value="form1" />
<input type="submit" value="Insertar" />
</form>
<p> </p>
</body>
</html>
gracias