Skip to content

Instantly share code, notes, and snippets.

@fdr
Created July 30, 2013 06:52
Show Gist options
  • Save fdr/6110838 to your computer and use it in GitHub Desktop.
Save fdr/6110838 to your computer and use it in GitHub Desktop.
A very simple PHP test It just makes sure linking maybe-works.
<html>
<head>
<title>PHP Test</title>
</head>
<body>
<?php echo '<p>Hello World</p>'; ?>
<?php echo mysql_connect(); ?>
<?php echo apc_store('hello', 'world') ?>
<?php echo apc_fetch('hello') ?>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment