Hi guys
Can I use HTML Frames with PHP?
I presumed I can do this by..
[CODE]<?php session_start(); require("auth.php"); require("do_html_header.php"); if($_SESSION['SESS_admin'] == 0) require("do_menu.php"); else require("do_menu3.php");
do_html_header(); print"Welcome ". $_SESSION['SESS_FIRST_NAME']."!"; do_menu(); ?>
this code is perfectly fine...
check your limits.php whether there is any error... execute this page individually in your browser.
thanks