Hi all,
I am new to this forum and was wondering if anyone could help… I want to construct a HTML website that utilises PHP to emulate a Frameset, I have so far succeeded with one main area in which the content changes, by using the following method:
if (!isset($_GET[‘page’])) $page= ‘printer’; else $page= $_GET[‘page’];
switch($page)
{
case ‘crow’: include (‘characters/crow.php’);break;
case ‘glo_kock’: include (‘characters/glokock.php’);break;
case ‘iolo’:include (‘characters/iolo.php’);break;
case ‘malog’:include (‘characters/malog.php’);break;
}
What I am trying to achieve is to have two areas in the same page in which information can be loaded in indipendently of each other
Is this possible? (My PHP knowledge is extremely limited)
Best Regards
Alexis