having problems with a header redirect
i am trying to redirect to
http://www.mysite.com/somepage
the problem is header info is being added before my link, so it is resolving as
http://www.mysite.com/component/uddeim/www.mysite.com/somepage
my code is:
session_start();
$adredirect = $_SESSION;
header( "LOCATION:, $adredirect" );
the value stored in $adredirect is www.mysite.com/somepage
do you think forcing a ob flush thing would work before the session start?
anyways my kids are starving for dinner so i can't spend the two hours it seems to always take me to figure this stuff out.
Thanks in advance for any help.
Paul