--- LoonySalmon <[EMAIL PROTECTED]> wrote: > $page = '$home'; ... > Warning: main($page) [function.main]: failed to create stream: > No such file or directory in C:\swamp\www\site\index.php on line > 109
You're trying to include a file named $home, and it doesn't exist. I think you mean this instead: $page = $home; Hope that helps. Chris ===== Become a better Web developer with the HTTP Developer's Handbook http://httphandbook.org/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php