Posted by Rami Elomaa on 05/19/07 07:30
Robertu kirjoitti:
> $HTTP_STR=$HTTP_POST_VARS;
> $HTTP_STR=$HTTP_GET_VARS;
$HTTP_POST_VARS and $HTTP_GET_VARS are deprecated. It means do not use
these anymore. These will not be avaialable in future versions of php,
instead use $_POST and $_GET.
> if ($dbf=="")
> {header("Location: http://www.pippo.es/");exit()} <<--- missing semicolon ; after exit().
Try not to write everything on one line so you'll see better what is
wrong. It's easier to read.
if ($dbf=="") {
header("Location: http://www.pippo.es/");
exit();
}
--
Rami.Elomaa@gmail.com
"Wikipedia on vähän niinq internetin raamattu, kukaan ei pohjimmiltaan
usko siihen ja kukaan ei tiedä mikä pitää paikkansa." -- z00ze
Navigation:
[Reply to this message]
|