I have been trying to call a posting in a php include as follows but it doesnt seem to work...
<?php include '../cms/blog.php?id=41234'; ?>
quite confused because the link within a href works fine... eg
<a href="www.site,com/cms40/blog.php?id=41234">article</a>
Can someone put me right ... Cheers
tried
<?php $id= '41649'; $template = "blog template"; include './cms/index.php'; ?>
for future users i solved this with the following...
<?php $GET['id']=41711; include('chartsblog.php'); ?>