Forum Moderators: coopster
Then I started to write the admin screens for it, and it appears that I am losing the submitted variable using this approach. $_GET and $_POST are both empty. Is the use of forms possible with theis framework.
The technique to produce the pages is on that I learnt here. I have my 404 script calling index.php which then does all the work.
<?php
print "post ".count($_POST);
print "get ".count($_GET);
include "setup.inc";
include $incpath."siteincludes/site.inc";
?>
And the first 2 lines are just for debugging. :)