Hello all,
I have an application that uses frames. When the user logs in, in the mainframe (see below) with a php login screen and script, I want to update the information in the “cornerframe” after I have displayed a message saying that the user in now logged in, basically putting the userid they are logged in as in the “cornerframe” (which if I could do a simple refresh on that frame would fix the problem).
I know that I can’t use the Location command as I’ve already displayed stuff on the screen. I’ve seen a couple of references to javascript, but I’m pretty clueless about how this would work.
Is there something simple that I’m missing here to get this to work?
Thanks for any help you can lend.
-Dave
Here’s the main page.
<head>
<title>Pacific War Airfields Project - Main Page</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset rows="107," cols="147," frameborder="NO" border="0" framespacing="0">
<frame name="cornerFrame" scrolling="NO" noresize src="af_topcorner.php" >
<frame name="topFrame" scrolling="NO" noresize src="af_topmenu.htm" >
<frame name="leftFrame" scrolling="AUTO" src="af_addmenu.htm" frameborder="YES" noresize>
<frame name="mainFrame" src="af_home.htm">
</frameset>
<noframes>
<body bgcolor="#FFFFFF" text="#000000">
</body>
</noframes>