Skip to content

Instantly share code, notes, and snippets.

@mrsinguyen
Created June 10, 2010 07:17
Show Gist options
  • Save mrsinguyen/432668 to your computer and use it in GitHub Desktop.
Save mrsinguyen/432668 to your computer and use it in GitHub Desktop.
<?php
// Old code, loop over a result.
while ($row = db_fetch_object($result)) {
}
// DBTNG.
foreach ($result as $row) {
}
// Old code, fetch a single field directly from a query.
$nid = db_result(db_query('...'));
// DBTNG.
$nid = db_query('...')->fetchField();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment