Hello,
How to call a php file from an shtml file ?
================
The shtml file :
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<head>
<title>shtml file</title>
</head>
<body>
<!--#include virtual="file.php" --><BR>
</body>
==============
The php file :
<?php
header("Content-type: text/html");
print "Hello world ! ";
?>
It seems to be ok but I always obtain this error message :
[an error occurred while processing this directive]
Thanx in advance for your help.