PHP: Difference between revisions

From nuBuilderForte
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
*[[db_columns]] - Returns an array of fieldname for a table.
*[[db_columns]] - Returns an array of fieldname for a table.
*[[db_fetch_array]] - A function for looping through the result from [[nuRunQuery]].  '''$r['fieldname']'''
*[[db_fetch_array]] - A function for looping through the result from [[nuRunQuery]].  <code type='php'>$r['fieldname']</code>
*[[db_fetch_object]] - A function for looping through the result from [[nuRunQuery]]. '''$r->fieldname'''
*[[db_fetch_object]] - A function for looping through the result from [[nuRunQuery]]. <code>$r->fieldname</code>
*[[db_field_array]] - A function for looping through the result from [[nuRunQuery]].  '''$r[0]'''
*[[db_field_array]] - A function for looping through the result from [[nuRunQuery]].  <code>$r[0]</code>
*[[db_num_rows]] - The number of records in the result from [[nuRunQuery]].
*[[db_num_rows]] - The number of records in the result from [[nuRunQuery]].
*[[nuAddJavascript]] - Adds Javascript to a Form as it is built.
*[[nuAddJavascript]] - Adds Javascript to a Form as it is built.

Revision as of 17:11, 9 July 2017