Ajax Event Calendar Support Product Page
Not a problem
event date inserting by form.php fails with error
Reported 21 Apr 2012 15:31:57
1
has this problem
21 Apr 2012 15:31:57 Rüdiger Blankertz posted:
Hi,setting up the form handling the Calendar dates, Dreeamweaver and Browser sends an error statement:Warning: Cannot modify header information - headers already sent by (output started at D:\www\xampp\htdocs\albris\Kalender\Kalender_eingabe.php:1) in D:\www\xampp\htdocs\albris\Kalender\Kalender_eingabe.php on line 57Line 57 is:
header(sprintf("Location: %s", $insertGoTo));
What can I do?
The code of the complete file:
<?php virtual('/Connections/web91_1.php'); ?> <?php if (!function_exists("GetSQLValueString")) { function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") { if (PHP_VERSION < 6) { $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 veranstaltungen (event_id, event_title, `start`, stop, `description`, link, type) VALUES (%s, %s, %s, %s, %s, %s, %s)", GetSQLValueString($_POST['event_id'], "text"), GetSQLValueString($_POST['event_title'], "text"), GetSQLValueString($_POST['start'], "date"), GetSQLValueString($_POST['stop'], "date"), GetSQLValueString($_POST['description'], "text"), GetSQLValueString($_POST['link'], "text"), GetSQLValueString($_POST['type'], "int")); mysql_select_db($database_web91_1, $web91_1); $Result1 = mysql_query($insertSQL, $web91_1) or die(mysql_error()); $insertGoTo = "/Kalender/kalender_55.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>Unbenanntes Dokument</title> </head> <body> <form action="<?php echo $editFormAction; ?>" method="post" name="form1" id="form1"> <table align="center"> <tr valign="baseline"> <td nowrap="nowrap" align="right">Event_id:</td> <td><input type="text" name="event_id" value="" size="32" /></td> </tr> <tr valign="baseline"> <td nowrap="nowrap" align="right">Event_title:</td> <td><input type="text" name="event_title" value="" size="32" /></td> </tr> <tr valign="baseline"> <td nowrap="nowrap" align="right">Start:</td> <td><input type="text" name="start" value="" size="32" /></td> </tr> <tr valign="baseline"> <td nowrap="nowrap" align="right">Stop:</td> <td><input type="text" name="stop" value="" size="32" /></td> </tr> <tr valign="baseline"> <td nowrap="nowrap" align="right">Description:</td> <td><input type="text" name="description" value="" size="32" /></td> </tr> <tr valign="baseline"> <td nowrap="nowrap" align="right">Link:</td> <td><input type="text" name="link" value="" size="32" /></td> </tr> <tr valign="baseline"> <td nowrap="nowrap" align="right">Type:</td> <td><input type="text" name="type" value="" size="32" /></td> </tr> <tr valign="baseline"> <td nowrap="nowrap" align="right"> </td> <td><input type="submit" value="Datensatz einfügen" /></td> </tr> </table> <input type="hidden" name="MM_insert" value="form1" /> </form> <p> </p> </body> </html>