LexHammer Posted December 16, 2009 Share Posted December 16, 2009 I have a chat, which i want to be opened, as soon as the users login to the site. As it is now, when the user login, he's redirected to home.php and have to press the CHAT button to enter the chat The code for the chat button is <a href="javascript:launchChat();" class='top_menu_item' style="text-decoration:none">CHAT</a> Thank you. Quote Link to comment https://forums.phpfreaks.com/topic/185359-hom-to-make-one-url-to-open-together-with-another-url/ Share on other sites More sharing options...
vinpkl Posted December 16, 2009 Share Posted December 16, 2009 i havent tried but you can call this function in the body of home.php <body onload="chat();"> in this way when the page loads the chat will automatic get open. vineet Quote Link to comment https://forums.phpfreaks.com/topic/185359-hom-to-make-one-url-to-open-together-with-another-url/#findComment-978546 Share on other sites More sharing options...
LexHammer Posted December 17, 2009 Author Share Posted December 17, 2009 That didnt worked. <body onload="chat();">, but that worked <body onload="javascript:launchChat();">. I also changed the page from user_home.php to login.php and the code is this: // USER IS LOGGED IN, FORWARD TO USER HOME if( $user->user_exists ) { header("Location: user_home.php"); header("javascript:launchChat();"); exit(); } The problem is that every time the user_home page is opened, the chat reloads. How to make it load only for the first time the user log in and not every time when he opens user_home.php? Quote Link to comment https://forums.phpfreaks.com/topic/185359-hom-to-make-one-url-to-open-together-with-another-url/#findComment-979091 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.