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 ... Link to comment https://forums.phpfreaks.com/topic/210966-placing-php-into-java-nothing-complicated-help/ 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 Link to comment https://forums.phpfreaks.com/topic/210966-placing-php-into-java-nothing-complicated-help/#findComment-1100364 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";?>"> Link to comment https://forums.phpfreaks.com/topic/210966-placing-php-into-java-nothing-complicated-help/#findComment-1100371 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.