tauchai83 Posted January 16, 2007 Share Posted January 16, 2007 I have problem with frameset design. When i click on a link on left frame named leftFrame,the login screen will appear in the main frame called mainFrame. But after i login sucessfully, the menu somehow appear in the MAIN FRAME. It should appear in the leftFrame as i set target="leftFrame".I use javascript window.location. as follwing:if( strcmp( $ValidPassword[1], $txtPassword) == 0 ){ $complete = 1; $userid = $txtUserID; session_register('userid'); $HTTP_SESSION_VARS['userid'] = $userid; ?> <script language ="JavaScript"> window.location = "cust_menu.php"; ----> this appear in the mainFrame but i want it appears </script>"; leftFrame as customer menu<?php}elseblah blah blah I have tried to find out the info in Googl by somehow can't get the info i want... Link to comment https://forums.phpfreaks.com/topic/34387-please-helpif-u-can/ Share on other sites More sharing options...
kobmat Posted January 16, 2007 Share Posted January 16, 2007 try<script language ="JavaScript"> parent.leftFrame.location = "cust_menu.php"; ----> this appear in the mainFrame but i want it appears </script>"; Link to comment https://forums.phpfreaks.com/topic/34387-please-helpif-u-can/#findComment-161834 Share on other sites More sharing options...
tauchai83 Posted January 16, 2007 Author Share Posted January 16, 2007 thanks! it works well....thxs a lot..problem solved... Link to comment https://forums.phpfreaks.com/topic/34387-please-helpif-u-can/#findComment-161852 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.