Another quick question regarding News.php. I can get it to work just great as a PHP include. Why will it not work as a server side include? I try to include virtual and change how it is included, etc as I would with any other ssi, but it returns:
[an error occurred while processing this directive]
here is my newsTest.shtml file:
<html>
<head>
<title>News Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<p>This Is A Test</p>
<p>
<!--#include virtual="
http://www.mysite.com/yabbse/index.php?action=news;board=28;template=news_template:ext=html" -->
</p>
</body>
</html>
and my news_template.html:
<table border=0 width=100% align=center>
<tr>
<td><font face=verdana size=2>$news_icon <b>$news_title</b></font><font face=verdana size=1><br />$news_date</font><font face=verdana size=1> $txt[525] $news_poster<br /><br /></font></td>
</tr>
<tr>
<td><font face=verdana size=2>$news_body<br><br></font></td>
</tr>
<tr>
<td><font face=verdana size=2>$news_comments | $news_newcomment</font></td>
</tr>
</table>
<br><hr width=100%><br>
Any ideas why i'm getting an error?