Hash Variables: Difference between revisions

From nuBuilderForte
Jump to navigation Jump to search
No edit summary
No edit summary
Line 8: Line 8:


::To find what Hash Variables are available you can use [[PHP#nuHash|nuHash()]].
::To find what Hash Variables are available you can use [[PHP#nuHash|nuHash()]].


::Example of using Hash Variables in PHP.
::Example of using Hash Variables in PHP.
Line 34: Line 33:
<source lang="html">
<source lang="html">


<a target='_blank' href='http://maps.googleapis.com/maps/api/staticmap?center=#zper_lat#,#per_long#&zoom=16&size=300x300&sensor=false&markers=color:green%7Clabel:Click%7C#per_lat#,#per_long#'>
<a target='_blank' href='http://maps.googleapis.com/maps/api/staticmap?
   <img src='http://maps.googleapis.com/maps/api/staticmap?center=#per_lat#,#per_long#&zoom=16&size=300x300&sensor=false&markers=color:green%7Clabel:Click%7C#per_lat#,#per_long#'/>
      center=#zper_lat#,#per_long#&zoom=16&size=300x300&sensor=false
      &markers=color:green%7Clabel:Click%7C#per_lat#,#per_long#'>
   <img src='http://maps.googleapis.com/maps/api/staticmap?center=#per_lat#,
      #per_long#&zoom=16&size=300x300&sensor=false
      &markers=color:green%7Clabel:Click%7C#per_lat#,#per_long#'/>
</a>
</a>




</source>
</source>

Revision as of 14:20, 15 July 2017

There are 3 places Hash Variables can be used..


  • PHP
Hash Variables allow you to customise your PHP code.
Before running any custom PHP code, nuBuilder does a search and replace with all currently available Hash Variables and refered to in your code.
To find what Hash Variables are available you can use nuHash().
Example of using Hash Variables in PHP.

<source lang="php">

$s = "CREATE TABLE #TABLE_ID# SELECT * FROM invoice";

nuRunQuery($s);

</source>


  • Report Labels
Report Labels.


  • HTML
Hash Variables allow you to customise your HTML Objects.
The Hash Variables available to HTML Objects are the same as those available on Before Edit.
Example of using Hash Variables in HTML.

<source lang="html">

<a target='_blank' href='http://maps.googleapis.com/maps/api/staticmap?

      center=#zper_lat#,#per_long#&zoom=16&size=300x300&sensor=false
      &markers=color:green%7Clabel:Click%7C#per_lat#,#per_long#'>
  <img src='http://maps.googleapis.com/maps/api/staticmap?center=#per_lat#,
      #per_long#&zoom=16&size=300x300&sensor=false
      &markers=color:green%7Clabel:Click%7C#per_lat#,#per_long#'/>

</a>


</source>