Hi.. I'm really new to this and I have a problem that makes me go nuts!
I have this page, template.php. On the page I can include another page with require_once, like this:
<html>
<head></head>
<body>
<?php require_once ("mypage.html"); ?>
</body>
</html>
This works fine, no problem. But when I change it to:
<?php require_once ("$page.html"); ?>
and use the url www.xxxxxx.com/template.php?page=mypage to get it, the browser doesn't return anything. Acually it stops right before the php code, and only writes out:
<html>
<head></head>
<body>
How stupid am I on a scale from 1-10 and what am I doing wrong? Please help!