Functions in PHP: Difference between revisions
Jump to navigation
Jump to search
New page: Here's the format of a function: function plus() { ?><img src="./images/plus.gif" width=22 height=22 alt="+" border="0" align="top"> <? } Here's how to call a function: pl... |
mNo edit summary |
||
Line 9: | Line 9: | ||
plus(); | plus(); | ||
{{:Sparse Entry}} | |||
[[Category:Computer Technology]] | [[Category:Computer Technology]] | ||
[[Category:Programming]] | [[Category:Programming]] | ||
[[Category:PHP]] | [[Category:PHP]] |
Revision as of 21:12, 6 February 2014
Here's the format of a function:
function plus() { ?><img src="./images/plus.gif" width=22 height=22 alt="+" border="0" align="top"> <? }
Here's how to call a function:
plus();
![]() Learn more... |