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=
*[[db_fetch_array]] - A function for looping through the result from [[nuRunQuery]].  <code>$r['fieldname']</code>
Returns an array of fieldname for a table.
*[[db_fetch_object]] - A function for looping through the result from [[nuRunQuery]]. <code>$r->fieldname</code>
=db_fetch_array=
*[[db_field_array]] - A function for looping through the result from [[nuRunQuery]].  <code>$r[0]</code>
A function for looping through the result from [[nuRunQuery]].  <code>$r['fieldname']</code>
*[[db_num_rows]] - The number of records in the result from [[nuRunQuery]].
=db_fetch_object=
*[[nuAddJavascript]] - Adds Javascript to a Form as it is built.
A function for looping through the result from [[nuRunQuery]]. <code>$r->fieldname</code>
*[[nuDebug]] - This function takes up to 10 parameters and creates a record in the '''Debug''' Form for testing purposes.
=db_field_array=
*[[nuDisplayError]] - This adds an error that will stop the current event running and display the error message.
A function for looping through the result from [[nuRunQuery]].  <code>$r[0]</code>
*[[nuDisplayMessage]] - This adds a message that will be displayed after the current event completes.
=db_num_rows=
*[[nuGetSubformObject]] - Returns a PHP object that can be looped through.
The number of records in the result from [[nuRunQuery]].
*[[nuGetUserAccess]] - Returns an array of user information.
=nuAddJavascript=
*[[nuHasNewRecordID]] - Returns true or false.
Adds Javascript to a Form as it is built.
*[[phpnuID|nuID]] - Creates a random string.
=nuDebug=
*[[nuIsGlobeadmin]] - Returns true or false.
This function takes up to 10 parameters and creates a record in the '''Debug''' Form for testing purposes.
*[[nuRemoveNonCharacters]] -
=nuDisplayError=
*[[nuRunPHP]] - Run a Procedure.
This adds an error that will stop the current event running and display the error message.
*[[nuRunPHPHidden]] - Run a Procedure.
=nuDisplayMessage=
*[[nuRunQuery]] - Run an SQL query.
This adds a message that will be displayed after the current event completes.
*[[nuSetFormValue]] - Updates Objects after a Lookup value is chosen.
=nuGetSubformObject=
*[[nuSubformObject]] - Returns a PHP object that can be looped through.
Returns a PHP object that can be looped through.
*[[nuTT]] - Creates a unique ID starting with '__'.
=nuGetUserAccess=
Returns an array of user information.
=nuHasNewRecordID=
Returns true or false.
=phpnuID|nuID=
Creates a random string.
=nuIsGlobeadmin=
Returns true or false.
=nuRemoveNonCharacters=
 
=nuRunPHP=
Run a Procedure.
=nuRunPHPHidden=
Run a Procedure.
=nuRunQuery=
Run an SQL query.
=nuSetFormValue=
Updates Objects after a Lookup value is chosen.
=nuSubformObject=
Returns a PHP object that can be looped through.
=nuTT=
Creates a unique ID starting with '__'.

Revision as of 20:28, 9 July 2017

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_object

A function for looping through the result from nuRunQuery. $r->fieldname

db_field_array

A function for looping through the result from nuRunQuery. $r[0]

db_num_rows

The number of records in the result from nuRunQuery.

nuAddJavascript

Adds Javascript to a Form as it is built.

nuDebug

This function takes up to 10 parameters and creates a record in the Debug Form for testing purposes.

nuDisplayError

This adds an error that will stop the current event running and display the error message.

nuDisplayMessage

This adds a message that will be displayed after the current event completes.

nuGetSubformObject

Returns a PHP object that can be looped through.

nuGetUserAccess

Returns an array of user information.

nuHasNewRecordID

Returns true or false.

phpnuID|nuID

Creates a random string.

nuIsGlobeadmin

Returns true or false.

nuRemoveNonCharacters

nuRunPHP

Run a Procedure.

nuRunPHPHidden

Run a Procedure.

nuRunQuery

Run an SQL query.

nuSetFormValue

Updates Objects after a Lookup value is chosen.

nuSubformObject

Returns a PHP object that can be looped through.

nuTT

Creates a unique ID starting with '__'.