Using $_GET and $_POST together
I find myself writing PHP scripts to do backend Ajax work. One of the problems I often come up against is that I need to be able to call the same script either using a query string and pulling the variables from $_GET or via a form and calling the variables from $_POST. I usually [...]