mosts likely you have html output in the page somewhere, perhaps in the
includes or it could be a blank space in one of the files that is above and
outside the php tags
Bastien
From: j.kuehne@xxxxxxxxxxxxxx
To: php-db@xxxxxxxxxxxxx
Subject: problem with header()
Date: Wed, 4 Oct 2006 07:40:54 +0000
Hi
I can not submit any header() information in the following context.
What is wrong within the code?
<?php
require_once "includes/db.inc";
require_once "HTML/Template/ITX.php";
if (!($connection = @ mysql_connect($hostname, $username, $password)))
die("Could not connect to database");
$status = mysqlclean($_GET, "status", 1, $connection);
$template = new HTML_Template_ITX("./templates");
$template->loadTemplatefile("form2tpl.tpl", true, true);
$template->setCurrentBlock("success");
$template->setVariable("AUTOR", $_REQUEST["autor_eb"]);
$template->setVariable("STICHWORT", $_REQUEST["stichwort_eb"]);
$template->setVariable("DATUM", $_REQUEST["datum_eb"]);
$template->setVariable("ANLAGE", $_REQUEST["anlage_eb"]);
$template->setVariable("PROBLEM", $_REQUEST["problem_eb"]);
$template->parseCurrentBlock();
$template->show();
session_start();
foreach($_POST as $Key => $Value) {
$_SESSION[$Key] = $Value;
}
if ($_POST['submit'] == "Eintrag Bearbeiten"){
header("Location: http://127.0.0.1/www2/knowledge_db/knowbase02.php");
exit;
}
?>
Best regards, Joerg Kuehne
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php