Pues puedes hacer:
   
Código php:
Ver original- <input type="hidden" name="fecha" value=" <?php echo date("Y-m-d"); ?>- " /> 
Aunque realmente eso seria mas inseguro a que si insertas directo el valor en tu query, algo así:   
Código php:
Ver original- if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) { 
- $insertSQL = sprintf("INSERT INTO notas (fecha, de, comentario) VALUES (%s, %s, %s)", 
- GetSQLValueString($_POST['de'], "text"), 
- GetSQLValueString($_POST['comentario'], "text")); 
-   
-   
- $insertGoTo = "index.php"; 
- if (isset($_SERVER['QUERY_STRING'])) { 
- $insertGoTo .= (strpos($insertGoTo, '?'))-  ?  "&" : "?";
 
- $insertGoTo .= $_SERVER['QUERY_STRING']; 
- } 
- } 
Saludos 
