update page now

Voting

: zero minus zero?
(Example: nine)

The Note You're Voting On

man13or at hotmail dot fr
6 years ago
Quick debugging methods :

@print($a);
is equivalent to
if isset($a) echo $a ;

@a++;
is equivalent to
if isset($a) $a++ ;
else $a = 1;

<< Back to user notes page

To Top