...information as POST? I'm looking to forward user to next page with some data, but I don't want to use $_GET -- as I don't want the data appearing in URL. I was hoping to send a header with values in $_POST, and then redirect user to that page. Is this possible?
Currently, I'm using:
header("location: new_page.html?x1=" . $x1 . "&x2=" . $x2);
Currently, I'm using:
header("location: new_page.html?x1=" . $x1 . "&x2=" . $x2);