Created
December 10, 2012 16:10
-
-
Save idea34/4251540 to your computer and use it in GitHub Desktop.
useful php items
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
<?php // Collection of useful php snippets | |
// html readable print_r for arrays | |
echo '<pre>'; | |
print_r($myarray); | |
echo '</pre>'; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment