>From time to time I need an If statement that includes an Or condition...

<?php
  if ((condition1 == TRUE) OR (condition2 == TRUE)) {
    do something;
  } esle {
    do something else;
  }
?>

What's the correct syntax for the If line?

Thanx
-- 
Robb Kerr
Digital IGUANA
Helping Digital Artists Achieve their Dreams
----------------------------------------------------
http://www.digitaliguana.com
http://www.cancerreallysucks.org

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to