Hello,
I'm trying to detect weather a variable was received via POST or GET. If the method was GET, then to automatically redirect to the POST equivalent.
<?php
ifset($_GET["s"]){
header("Location: http://www.example.com/");
... set POST=$_GET["s"]; ...
}
?>
Is it possible to set the POST variable?