oliverj777 Posted August 17, 2010 Share Posted August 17, 2010 Okay, I would like to redirect my page within a specific time using java script: <meta http-equiv="Refresh" content="3;url=<?PHP echo 'progress.php?user=';$session->username?>"> Basically, I would like it to redirect to this: progress.php?user=$session->username . But it redirects to: progress.php?user= Please help, thanks ... Quote Link to comment Share on other sites More sharing options...
AtlasC1 Posted August 17, 2010 Share Posted August 17, 2010 My guess is that it should probably be: <?php echo 'progress.php?user=' , $session->username ?>"> -jm Quote Link to comment Share on other sites More sharing options...
oliverj777 Posted August 17, 2010 Author Share Posted August 17, 2010 Just figured it out. Its: <meta http-equiv="Refresh" content="3;url=<?PHP echo"progress.php?user=$session->username";?>"> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.