News:

MyKidsDiary.in :: Capture your kids magical moment and create your Online Private Diary for your kids

Main Menu

Assignment Operators in PHP

Started by sajiv, Aug 14, 2008, 05:25 PM

Previous topic - Next topic

sajiv



Operator     Example     Is The Same As


=                   x=y             x=y
+=                 x+=y           x=x+y
-=                  x-=y            x=x-y
*=                 x*=y           x=x*y
/=                  x/=y            x=x/y
.=                  x.=y            x=x.y
%=                x%=y         x=x%y

:acumen