Quote:
Originally posted by afarty
thanks
i have solved my problem!
$_post[] is the solution!
|
Actually this is not best, because you should know what method is in <FORM : GET/POST.
BEST way is
@import_request_variables('pg', '');
Now you will have a variable with same name that form has and it will automatically recognize GET/POST method.
Even if you have GET and POST together it will overwrite POST variables by GET variable (pg in parameters);
Good luck.