can i add a page to a module?
Using Jamroom
if you use "/task/invoiced/month=March" then $_post['month'] will equal 'March' but if you want to keep it clean
/task/invoiced/March
$_post['option']
$_post['_1']
$_post['_2']
$_post['_3']
one of those above will also equal march. not sure which, so you'd need to check.
--edit--
as for the file export, look in the jrChainedSelect module it has a way to export and import a .csv file
function view_jrChainedSelect_export()
//.... get the data ready
header("Content-type: text/csv");
header("Content-Disposition: attachment; filename=\"ChainedSelect_{$_rt['set_name']}.csv\"");
asort($_r1);
$out = implode("\n", $_r1);
echo $out;
updated by @michael: 05/13/14 01:53:16AM
