Quote:
Originally posted by alex79
i've renamed my index file from index.shtml in to index.php but now when i want to call a file with this line:
PHP Code:
<!--#include virtual="filename.html" -->
don't work anymore
what line should i use insted that in index.php to call the filename.html ?
|
Ofcourse it doesn't work anymore. SSI != PHP
Try something like
PHP Code:
<?php
include("filename.html");
?>