Myke.
If you try to do that make sure the page extension is .phpPHP Code:
<?include "pageurl.php"; ?>

THanks Richard =)) How can I target it?
drink up this bottle of yeah
and P A I N T your body on me
PHP Include code to place in your content:
To include a page, you put the link:<?php
$val = $_GET['id'];
$val .= ".php";
$dirty = array("..");
$clean = array("");
$val = str_replace($dirty, $clean, $val);
if (isset($_GET['id'])) {
if (file_exists($val)) {
include "$val";
}
else {
include "404.php";
}
}
else {
include "home.php";
}
// Include this script in your content area
// Run ?id=pagename (without .php) to view a page
?>
DO NOT INCLUDE the file entension. PHP FILES ONLYindex.php?id=home
yeah![]()
Want to hide these adverts? Register an account for free!