05-27-2008, 01:20 PM
Hello,
I am modifying the control panel interface files:
interface/html_cp_header.php and
interface/html_cp_footer.php
with the following text respectively:
<html>
<head>
<title>Membership Manager: Control Panel</title>
</head>
<body bgcolor="White" text="#000000" link="#0000CC" vlink="#0000CC" alink="#0000CC" marginwidth=0 marginheight=15 topmargin=15 leftmargin=0>
<?php
include("../layout/pageTemplate.php");
include("../layout/masterHead.php");
include("../layout/navBar.php");
?>
<!--- ------------------------------------------------------------------------>
<!--- Place Any CSS / Javascript code within the {literal} {/literal} Tags --->
<!--- ------------------------------------------------------------------------>
{literal}
<style type="text/css"><!--
td, a, span, input, select { font:13px Arial, Geneva, sans-serif;color:#393939;}
td, span { line-height:15px;}
--></style>
{/literal}
and
<?php
include("../layout/rightBar.php");
include("../layout/masterFooter.php");
?>
</body>
</html>
It seems that these files are not using a php include and the subsequent control_panel.php page source looks like this (php tags not executed). I use these templates to layout my web site page and I would like to include the navigation bars on the control panel page. Please advise on how to do this.
<html>
<head>
<title>Membership Manager: Control Panel</title>
</head>
<body bgcolor="White" text="#000000" link="#0000CC" vlink="#0000CC" alink="#0000CC" marginwidth=0 marginheight=15 topmargin=15 leftmargin=0>
<?php
include("../layout/pageTemplate.php");
include("../layout/masterHead.php");
include("../layout/navBar.php");
?>
<!--- ------------------------------------------------------------------------>
<!--- Place Any CSS / Javascript code within the Tags --->
<!--- ------------------------------------------------------------------------>
.
.
.
. and so on.
I am modifying the control panel interface files:
interface/html_cp_header.php and
interface/html_cp_footer.php
with the following text respectively:
<html>
<head>
<title>Membership Manager: Control Panel</title>
</head>
<body bgcolor="White" text="#000000" link="#0000CC" vlink="#0000CC" alink="#0000CC" marginwidth=0 marginheight=15 topmargin=15 leftmargin=0>
<?php
include("../layout/pageTemplate.php");
include("../layout/masterHead.php");
include("../layout/navBar.php");
?>
<!--- ------------------------------------------------------------------------>
<!--- Place Any CSS / Javascript code within the {literal} {/literal} Tags --->
<!--- ------------------------------------------------------------------------>
{literal}
<style type="text/css"><!--
td, a, span, input, select { font:13px Arial, Geneva, sans-serif;color:#393939;}
td, span { line-height:15px;}
--></style>
{/literal}
and
<?php
include("../layout/rightBar.php");
include("../layout/masterFooter.php");
?>
</body>
</html>
It seems that these files are not using a php include and the subsequent control_panel.php page source looks like this (php tags not executed). I use these templates to layout my web site page and I would like to include the navigation bars on the control panel page. Please advise on how to do this.
<html>
<head>
<title>Membership Manager: Control Panel</title>
</head>
<body bgcolor="White" text="#000000" link="#0000CC" vlink="#0000CC" alink="#0000CC" marginwidth=0 marginheight=15 topmargin=15 leftmargin=0>
<?php
include("../layout/pageTemplate.php");
include("../layout/masterHead.php");
include("../layout/navBar.php");
?>
<!--- ------------------------------------------------------------------------>
<!--- Place Any CSS / Javascript code within the Tags --->
<!--- ------------------------------------------------------------------------>
.
.
.
. and so on.