I have a shtml index.shtml file in which I want to include a PHP file that executes some program and returns HTML data. I am trying to include my PHP file, but I donβt know how to do it, I tried to follow, but nothing works,
The following line simply prints the error " [error processing this directive] ":
This line displays some unwanted characters:
This line does nothing and displays the command as is on the .shtml page
<?PHP
include("/SSI/test.php");
?>
thanks
source
share