↧
Pull variables that were submitted as 'post' or 'get' from previous page:
Use this PHP code to pull variables from previous web page: extract($_POST);extract($_GET);
View ArticleGet All Variables in PHP from GET or POST
Use this PHP code to pull variables that were just posted, such as from an HTML form: extract($_POST); extract($_GET); It's then a good idea to 'clean' the variables of any html spam or injection...
View Article