Click to See Complete Forum and Search --> : passing usernames and passwords to frames


irishgirl
02-24-2004, 10:18 AM
hi
i am using the following code

[php]
<html>
<head>
<title>Welcome</title>
<META HTTP-EQUIV="Expires" CONTENT="0">
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="Thu, 03 Aug 1999 09:30:00 GMT">

</head>
</html>

<frameset rows="15%,*,8%" frameborder="0" frameheight="0" framespacing="0" marginheight="0" marginwidth="0" >
<frame src="header.html" scrolling=no frameborder="1">
<frameset cols="17%,*" frameborder="1" frameheight="0" framespacing="0" marginheight="0" marginwidth="0" >
<frame src="funddetails.html" scrolling=auto name="menu_frame">
<frame src="main.html" scrolling=auto name="main_frame">
</frameset>
<frame src="footer.html" scrolling=no frameborder="1">
</frameset>

<noframes>
Your browser cannot display frames.
</noframes>

</html>

[php]


i load this page from a link on another page, i want to be able to pass usernames and passwords to this page, is this possible???


many thanks

irishgirl
02-24-2004, 10:20 AM
oppps, sorry everybody, i put whe incorrect code in my last post, all the pages are php pages and not html, so it looks like this

[php]
<html>
<head>
<title>Wlecome</title>
<META HTTP-EQUIV="Expires" CONTENT="0">
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="Thu, 03 Aug 1999 09:30:00 GMT">

</head>
</html>

<frameset rows="15%,*,8%" frameborder="0" frameheight="0" framespacing="0" marginheight="0" marginwidth="0" >
<frame src="header.php3" scrolling=no frameborder="1">
<frameset cols="17%,*" frameborder="1" frameheight="0" framespacing="0" marginheight="0" marginwidth="0" >
<frame src="funddetails.php3" scrolling=auto name="menu_frame">
<frame src="main.php3" scrolling=auto name="main_frame">
</frameset>
<frame src="footer.php3" scrolling=no frameborder="1">
</frameset>

<noframes>
Your browser cannot display frames.
</noframes>

</html>

[php]


if u can help please do :)