06-23-2008, 01:37 AM
|
#4 (permalink)
|
|
The Acquainted
Join Date: May 2008
Posts: 175
Thanks: 9
|
Basically though, if you initialize your variables properly your function calls of which get included would automatically set them to 0.
IE
PHP Code:
function myFunc() { var1 = 0; var2 = 0; var3 = 0; }
|
|
|