Skip to content

Instantly share code, notes, and snippets.

@ianlintner-wf
Created August 14, 2014 15:56
Show Gist options
  • Select an option

  • Save ianlintner-wf/44958c8ee579cedb7eca to your computer and use it in GitHub Desktop.

Select an option

Save ianlintner-wf/44958c8ee579cedb7eca to your computer and use it in GitHub Desktop.
Set of Devel Data Debugging for Production
<?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