Recent content by Talon D

  1. T

    Are there any well documented pre-Christian religions?

    Unfortunately documentation is a fairly recent occurrence. There are many native American traditions that lived on only in oral traditions until fairly recently.
  2. T

    PHP program, how does this work?

    $result = ( $a >= $b ) && ( $c < $d ); && is a logical and so if 10 >= 3 and 7 < 20 then result is true $result = ( $a < $b ) || ( $c <= $d ); || is logical or so if 10 < 3 or 7 <= 20 then result is true $result = $a % $b; % is the modulo operator so result =10 mod 3
  3. T

    PHP program, how does this work?

    $result = ( $a >= $b ) && ( $c < $d ); && is a logical and so if 10 >= 3 and 7 < 20 then result is true $result = ( $a < $b ) || ( $c <= $d ); || is logical or so if 10 < 3 or 7 <= 20 then result is true $result = $a % $b; % is the modulo operator so result =10 mod 3
Back
Top