Help for this page

Select Code to Download


  1. or download this
    WHERE year = '2002',
    AND month = '3',
    ...
    AND time_start = '1:00 PM',
    AND time_end = '12:00 PM',
    AND title = 'Faciltiative Leadership Training',
    
  2. or download this
    WHERE 
        year = '2002'
    ...
        time_end = '12:00 PM'
    AND 
        title = 'Faciltiative Leadership Training'
    
  3. or download this
      if (year == '2002' && month == '3' && day = '16'
          && $time_start eq '1:00 PM' && $time_end eq '12:00 PM'
          && $title  eq 'Faciltiative Leadership Training') {
      #yada-yada-yada
     }
    
  4. or download this
      if (year == '2002', && month == '3', && day = '16',
          && $time_start eq '1:00 PM', && $time_end eq '12:00 PM',
          && $title  eq 'Faciltiative Leadership Training') {
      #yada-yada-yada
     }