I've set up a product enquiry page so that people can submit questions straight from the product details page. I'd like to post some variables from the product details page to the enquiry page, but when I use the POST method it does not work (I'm re-directed to a search page). I assume this is a security measure and is being controlled by auth.php (or a file referenced from there).It works fine when I use GET, but i want to avoid the variables in URL. My page looks like this
Code:
require "./auth.php";
require $xcart_dir."/include/categories.php";
require "products.php";
$smarty->assign("main","productenquiry");
func_display("customer/home.tpl", $smarty);