Skip to content

Instantly share code, notes, and snippets.

@lornajane
Created November 22, 2012 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lornajane/4131314 to your computer and use it in GitHub Desktop.
Save lornajane/4131314 to your computer and use it in GitHub Desktop.
localhost index
<?php
// phpinfo();
echo "verb: " . $_SERVER['REQUEST_METHOD'] . "\n";
echo "headers:";
var_dump(apache_request_headers());
echo "\n";
echo "GET: ";
var_dump($_GET);
echo "\n";
echo "POST: ";
var_dump($_POST);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment