<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <!--link rel="stylesheet" href=".css"-->
  <title>Social Media - All Form Input Types</title>
</head>
<body>
<img src="social-icons-large.png" style="width: 210px; height: 70px" alt=
 "Twitter, Facebook, Google+">
<?php

if ( isset( $_GET ) && array_key_exists( 'QUERY_STRING', $_SERVER ) )
{
    $qs = $_SERVER[ 'QUERY_STRING' ] ;
    echo( "<pre>QUERY_STRING = \"" . $qs . "\"</pre>\n" ) ;
}
else
{
    echo( "<p>No information provided</p>\n" ) ;
}

?>
</body>
</html>