The search function is extremely slow so Im just gonna make a new post.
What are the $_GET / $_POST / $_REQUEST commands for and how do I use em?
also, how is 'isset' used?
| SitePoint Sponsor |
The search function is extremely slow so Im just gonna make a new post.
What are the $_GET / $_POST / $_REQUEST commands for and how do I use em?
also, how is 'isset' used?





Luckily there's a fine manual that can help you.
PHP Superglobals
isset
These are the ways to pass data via Forms ($_get and $_post) and URLs ($_request).Originally Posted by Zei
And you can use is set like :
PHP Code:if(isset(var)) {
// Do this
}
Bookmarks