Template:Function header: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
<div style='background-color:#F2F3F4;padding:10px;'> | |||
<div style='background-color:#F2F3F4;padding: | <div style='background-color:#F2F3F4;color:#690497;padding:0px 0px 10px 20px;font-size:20px;font-weight:700'> | ||
{{{1}}} | |||
</div> | |||
'''Parameters:''' | |||
{{{2}}} | |||
'''Description''' | |||
{{{3}}} | |||
'''Example''' | |||
<source lang="php"> | |||
$s = "SELECT * FROM customer"; | |||
$t = nuRunQuery($s); | |||
while($r = db_fetch_array($t)){ | |||
nuDebug('His name is : ' . $r->cus_name); | |||
} | |||
</source> | |||
'''Result''' | |||
<pre> | |||
</pre> | |||
'''Also see''' | |||
<pre> | |||
</pre> | |||
</div> | </div> |
Revision as of 16:15, 10 July 2017
{{{1}}}
Parameters: {{{2}}}
Description {{{3}}}
Example <source lang="php">
$s = "SELECT * FROM customer"; $t = nuRunQuery($s);
while($r = db_fetch_array($t)){
nuDebug('His name is : ' . $r->cus_name);
} </source> Result
Also see