PHP to conditionally load a url in a particular frame
Posted: Mon Jul 08, 2002 10:59 pm
Q1: How do I (in PHP) load a url into a particular html frame.
This is what I have in mind.
Any assistance will be appreciated.
- Andrew
This is what I have in mind.
Code: Select all
<?
if (session_is_registered("status") = true)
// load url w into frame a
// load url x into fram b
else
// load url y into frame a
// load url z into fram b
?>- Andrew