Results 1 to 4 of 4
Thread: PHP redirect
Hybrid View
-
October 29th, 2003, 07:36 PM #1520Junior Member
postsPHP redirect
How can I conditionally redirect the page with PHP?
Like...
If($redirect)
//do redirect
else
//no redirect
Thanks if you help.
-
October 29th, 2003, 07:38 PM #23,814lorem ipsum
postsmake sure whatever forwarding you're doing is being done at the very begining of the page, other wise it wouldn't workPHP Code:header("location:site.com");
-
October 29th, 2003, 08:36 PM #3520Junior Member
postswhat if I have this as the first line in my PHP script:
<?php session_start(); ?>
-
October 29th, 2003, 08:48 PM #43,814lorem ipsum
postshm.. good question, cause both send header information.. try having
PHP Code:<?php
session_start();
if ( condition ) header("location:site.com");
?>

Reply With Quote

Bookmarks