Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
extract( $_POST);
extract( $_GET);
extract( $_COOKIE);


If you want to use server variable like PHP_SELF direct, you will need add below on top of your PHP code.

Code Block
extract( $_SERVER);