|
Re: include problem
are you sure you have the path to the include right?
Where is the include found?
www.yourdomain.com/content/totalusers.php ? or something like www.yourdomain.com/php/content/totalusers.php ?
Maybe you should take the first slash off of the include path. Like this...
<?php include('content/totalusers.php'); ?>
Last edited by JacobHaug; Nov 13th, 2007 at 13:58.
Reason: Taking out main domain
|