Created
July 30, 2013 06:52
-
-
Save fdr/6110838 to your computer and use it in GitHub Desktop.
A very simple PHP test It just makes sure linking maybe-works.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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