RE: [PHP] RE: sending multiple frames to different pages

2002-02-28 Thread DARCY,MATTHEW (Non-HP-UnitedKingdom,ex2)
: Friday, March 01, 2002 7:51 AM To: Php-General Subject: RE: [PHP] RE: sending multiple frames to different pages You can use javascript. If you're calling this from a frame, this is how it works: parent.frames["first_frame" / zero based number].location.href = "my_page

RE: [PHP] RE: sending multiple frames to different pages

2002-02-28 Thread Niklas Lampén
You can use javascript. If you're calling this from a frame, this is how it works: parent.frames["first_frame" / zero based number].location.href = "my_page.php"; parent.frames["second_name" / zero based number].location.href = "my_page2.php"; Problem with this is that if user clicks Back button