We have a client that came to us, and his admin panel is using a iframe system,

<html>
<head>
<title>Administration Area</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

</head>

<frameset cols="180,*" frameborder="NO" border="0" framespacing="0">
  <frame src="menu.php?id_mnu=prd" name="leftFrame" frameborder="yes" scrolling="YES" noresize>
  <frame src="landing.php" name="mainFrame" frameborder="yes" bordercolor="#000000">
</frameset>
<noframes><body>

</body></noframes>
</html>

Now I'm loading landing.php into the "content" i frame, within landing.php i have a php include, yet its saying that the file doesn't exist but it does and its in the right directory. Is doing this even possible? Landing.php is running a jquery tab system and for each tab I want to include a new file.

So can this be done with iframe?

Thanks
-BaSk

These are not iframes. They are the old frame system, now deprecated.

However there is nothing special about the php scripts. Both menu.php and landing.php can include whatever files they want. There must be something else that is causing the problem. It has nothing to do with layout/frames which are client-side.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.