A community of PHP developers offering assistance, advice, discussion, and friendship.
Skip to content
Moderator: General Moderators
Post by Todlerone » Sat Feb 23, 2008 1:26 pm
Code: Select all
$standings[$x][0]=$standings[$x][0]+1;
Post by Christopher » Sat Feb 23, 2008 2:12 pm
++$standings[$x][0]; // or $standings[$x][0] += 1;
Return to “PHP - Code”