> 
> Hey, I want to change the oil in my car, is this possible in PHP?

if($accumulated_miles<3000){
  keep_driving;
}else{
  purchase_supplies('oil', 'filter');
  drain_crankcase;
  replace_filter;
  oil_fill(15);
  $accumulated_miles=0;
}

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

Reply via email to