Posted by Satyam on 04/04/05 18:18
You might have changed inadvertently one of the include files. It might
have trailing blanks after the final ?>, which obviously you don't see,
being blank, but they are echoed to the browser, and the header('location
.... then gives an error. Might have nothing to do with the SQl instructions
Satyam
"Neo Theone" <neotheone@gmx.net> wrote in message
news:425155F2.5040807@gmx.net...
> Until some time I could make a new empty line in mysql with this query:
> INSERT INTO `".$_SESSION['type']."`() VALUES ()
> where $_SESSION['type'] was the table I wanted to use but now I get an
> error and since I use DB I just get this error
>
> INSERT INTO `authors`() VALUES ()
> *Warning*: Cannot modify header information - headers already sent by
> (output started at
> /usr/local/ftp/faps/public_html/pubDB/edit/newline.php:9) in
> */usr/local/ftp/faps/public_html/pubDB/edit/newline.php* on line *19
>
> *This is the file
> <?php
> include "./checkuser.php";
>
> include "../modules/connect.php";
> array_pop($_REQUEST);
> $query = "INSERT INTO `".$_SESSION['type']."`() VALUES ()";
> $res =& $db->query($query);
> //Always check that result is not an error
> if (DB::isError($res)) {
> die($res->getMessage());
> }
>
> include "../modules/disconnect.php";
> header ("Location: ./edit.php?".$_SESSION['stayurl']);
>
> ?>
> Howcome does line nine: $res =& $db->query($query); write anything??
[Back to original message]
|