I keep on getting this erros in php

every time i got to a link on my site i get this error i don’t kno wht to do please help.

Warning: main(information/charms.html): failed to open stream: No such file or directory in /home/perfect-/public_html/morsmordre/index2.php on line 20

Warning: main(): Failed opening ‘information/charms.html’ for inclusion (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/perfect-/public_html/morsmordre/index2.php on line 20

what does your code look like?

<?php
if(!$page || $page == “”){$page = “news”;} ?>

<?php include("$page.html"); ?>

try this:


<?php
if((!$page) || ($page == "")){
$page = "news";
}
?>

also, use the PHP vbulletin tags when putting PHP in your posts. Makes it a lot easier to read.
[PHP] //php code here, without the asterisks. [/PHP]