In Vbscript (ASP)
I call include files like this <% include virtual="/filename.asp"%>
or <% include virtual="/foldername/filename.asp"%>
This doesn't seem to work in php..
<?php include ('/filename.php');?>
any advice on how this is done?
Thanks.
Try it without the slash.
ie <?php include ('filename.php');?>
and <?php include("./foldername/filename.php"); ?>
Thanks!