so far i've tried three, all in index.php located in
http://test.rivenshadow.com/.
number one:
Code:
<? include("updates.php"); ?>
number two:
Code:
<?php
$page = basename($x);
if(!$x)
include("updates.php");
else
include("$x.php")
?>
number three:
Code:
<?php echo '<p>Hello World</p>'; ?>
all produced white, blank pages, and when i right-clicked and viewed source, the php code was visable - not supposed to happen.