1
Hi,
At the moment im trying to work out how to include html files into your site theme. I check the tutorial and saw it only involves adding 3 lines to a html page so i did the following as a test page:
<?php
include("/mainfile.php");
include(XOOPS_ROOT_PATH."/header.php");
?>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
Roster
</body>
</html>
<?php
include(XOOPS_ROOT_PATH."/footer.php");
?>
When i uploaded the webpage to my webhost and pointed at in the page displays like this:
http://www.solo-elite.com/Test.php Whats wrong with it lol?