Hi all, any help from you on this problem would be great. With an HTML file using two includes which are PHP files, the second include does not get parased by PHP.
eg.
a.html is
<!--#include virtual="p1.php" -->
<!--#include virtual="p2.php" -->
p1.php is
<?php
echo"PART 1<br>";
?>
p2.php is
<?php
echo"PART 2<br>";
?>
The server outputs a.html as follows.
PART 1<br>
<?php
echo"PART 2<br>";
?>