Skip to content

Instantly share code, notes, and snippets.

@zyphlar
Created May 6, 2012 01:08
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 zyphlar/2606742 to your computer and use it in GitHub Desktop.
Save zyphlar/2606742 to your computer and use it in GitHub Desktop.
Basic Apache/PHP Start Page
<html>
<head>
<style type="text/css">
body {
background-color: #000;
color: #fff;
font-family: Arial,Helvetica,sans-serif;
}
</style>
</head>
<body>
<h1>
<?php echo $_SERVER['HTTP_HOST']; ?>
</h1>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment