Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

Comparison Operators in php

$points = 10;

  $points++;
  $points++;
  $points++;

echo $points; // 13

  $points--;
  $points--;
  $points--;
  $points--;
  $points--;

echo $points; // 8;
Source by elzero.org #
 
PREVIOUS NEXT
Tagged: #Comparison #Operators #php
ADD COMMENT
Topic
Name
6+4 =