MoT3rror |
08-17-2008 10:50 PM |
Quote:
Originally Posted by Lynne
(Post 1600151)
Aren't you using a template called 'orange' to spit out the page?
|
He isn't using templates that is why. If you want to use a template like the rest of forums you can either make a template with this code or make your php page output like this.
Code:
$stylevar[htmldoctype]
<html xmlns="http://www.w3.org/1999/xhtml" dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<!-- no cache headers -->
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="-1" />
<meta http-equiv="Cache-Control" content="no-cache" />
<!-- end no cache headers -->
$headinclude
<title>title of the page</title>
</head>
<body>
$header
$navbar
your code
$footer
</body>
</html>
Also if you are just getting a blank page, you are probably getting a php error. Use this code at the top to get this error or check your error log.
PHP Code:
ini_set("display_errors", 2);
|