PDA

View Full Version : i keep on getting this erros in php



Morsmordre
July 26th, 2003, 01:34 PM
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

ahmed
July 26th, 2003, 02:05 PM
what does your code look like?

Morsmordre
July 26th, 2003, 03:44 PM
<?php
if(!$page || $page == ""){$page = "news";} ?>

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

λ
July 26th, 2003, 04:22 PM
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]