Okay I'm fiddling still (thanks btw for replying!) here's what I've gotten so far in trial and error.
When I put it in like this
Code:
{php}
<?php
$XMLFILE = "http://madhatterrgames.com/phpBB3/generate_feed.php?content=posts&f%5B%5D=17&number_items=1&sid=3043e6c2e27b05430edc3ddff7d95c4b";
$TEMPLATE = "http://madhatterrgames.com/sample-template.html";
$MAXITEMS = "1";
include("http://madhatterrgames.com/rss2html.php");
?>
{/php}
I get this:
Parse error: syntax error, unexpected '<' in /.../public_html/var/templates_c/%%5A^5A2^5A22702C%%home.tpl.php on line 206
When I put it in like this:
Code:
{php}
$XMLFILE = "http://madhatterrgames.com/phpBB3/generate_feed.php?content=posts&f%5B%5D=17&number_items=1&sid=3043e6c2e27b05430edc3ddff7d95c4b";
$TEMPLATE = "http://madhatterrgames.com/sample-template.html";
$MAXITEMS = "1";
include("http://madhatterrgames.com/rss2html.php");
{/php}
I get this:
Parse error: syntax error, unexpected '<' in /.../public_html/var/templates_c/%%5A^5A2^5A22702C%%home.tpl.php on line 206
When I put it in like this:
Code:
{php}
<?php
include("http://madhatterrgames.com/rss2html.php?XMLFILE=http://madhatterrgames.com/phpBB3/generate_feed.php%3fcontent%3dposts%26f%255B%255D%3d17%26number_items%3d1%26sid%3d3043e6c2e27b05430edc3ddff7d95c4b&TEMPLATE=http://madhatterrgames.com/sample-template.html&MAXITEMS=1");
?>
{/php}
I get this:
Parse error: syntax error, unexpected '<' in /.../public_html/var/templates_c/%%5A^5A2^5A22702C%%home.tpl.php on line 206
When I put it in like this:
Code:
{php}
include("http://madhatterrgames.com/rss2html.php?XMLFILE=http://madhatterrgames.com/phpBB3/generate_feed.php%3fcontent%3dposts%26f%255B%255D%3d17%26number_items%3d1%26sid%3d3043e6c2e27b05430edc3ddff7d95c4b&TEMPLATE=http://madhatterrgames.com/sample-template.html&MAXITEMS=1");
{/php}
I get this:
Warning: include() [function.include]: URL file-access is disabled in the server configuration in /.../public_html/var/templates_c/%%5A^5A2^5A22702C%%home.tpl.php on line 206