That didnt work... 🙁 😕
Try running the page on your computer with the code
below, test it out and stuff cause it just dont work 😕
The Main Page. (start.php)
print("<A HREF=\"iframe.php?letter=a\" TARGET=\"iframe1\">A</A> - ");
print("<A HREF=\"iframe.php?letter=B\" TARGET=\"iframe1\">B</A> - ");
print("<A HREF=\"games.php?number=1\" TARGET=\"iframe1\">1</A> - ");
print("<A HREF=\"games.php?number=2\" TARGET=\"iframe1\">2</A> - ");
<iframe id="gframe" name="iframe1" marginwidth=0 marginheight=0 frameborder=1 vspace=0 hspace=0 border=1 src="games.php<?print("?letter=$letter&number=$number");?>" width=100% height=100%>
Your browser doesn't support the <iframe> tag. If you want to
view the list of games that match your selection while you browse, you
can you the <a href="/browse/games/c,1/?o=2&nif=1">non iframe version game browser</a>.</p>
<p>Internet Explorer 4.0 or higher, Netscape 6, Mozilla and Opera 5 all
support iframes, you might consider upgrading to a newer browser.
</iframe>
The iframe. (iframe.php)
<HTML>
<HEAD>
<TITLE>Clan Quick Silver</TITLE>
<LINK REL="stylesheet" HREF="../mystylesheet.css">
</HEAD>
<BODY>
<FONT CLASS="medium">
<UL TYPE="filled">
<?
//start the session
session_start();
//See what needs to change
if (isset($_GET['number'])) {
$_SESSION['number'] = $_GET['number'];
}
if (isset($_GET['letter'])) {
$_SESSION['letter'] = $_GET['letter'];
}
//display it
echo "$_SESSION[letter], $_SESSION[number]";
?>
</UL>
</FONT>
</BODY>
</HTML>
please try this out, if you find whats wrong lol ill be happy to let you laugh at me
😃
Thanks