Using version 1.6.7
I am developing a simple form-based module. The snippet of code that does this is:
$this->smarty->assign('formstart', $this->CreateFormStart($id, 'default', '', 'get', '', true));
.. other input fields ...
$this->smarty->assign('nextbutton', $this->CreateInputSubmit($id, 'btnNext', 'next >'));
$this->smarty->assign('formend', $this->CreateFormEnd());
echo $this->ProcessTemplate('guide.tpl');
The problem is, that after every submit, it takes you to the root (home page).
http://localhost/decking/moduleinterfac ... uideModule...
Along with all the module's GET request parameters - all very useless for the home page because the module is on another page!
What I really want is:
http://localhost/decking/moduleinterfac ... uideModule...
Or even better:
http://localhost/decking/index.php?page ... uideModule...
I have tried searching the site, api and google. So any help will be very, very much appreciated

Philip.