Created
August 14, 2014 15:56
-
-
Save ianlintner-wf/44958c8ee579cedb7eca to your computer and use it in GitHub Desktop.
Set of Devel Data Debugging for Production
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 | |
| $query = "SELECT * FROM node"; | |
| $result = db_query($query); | |
| if ($result) { | |
| while ($row = $result->fetchAssoc()) { | |
| dpm($row); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment