Hi to all, can someone tell me if it is possible to use this html command in a .php file and, if not, how do this with php code?
<!--#include virtual="/folder/file.php" -->
Thank you in advance for your help _
To include a file in PHP do as follows:
<? include("myfile.php"); ?>
-dr
Thanks, it works!!! _