events

Want to learn more about our unique products and BalanceCareer Plan? Attend one of our company co-sponsored events below to get a taste of both!

0){ sort( $lines ); //print_r( $lines );exit; $id =0; echo ""; foreach($lines as $line){ $fields = explode( "::", $line ); // now see if the date is expired if date is past current date then DO NOT SHOW $curdate = date("m/d/Y"); $curdateparts = explode( "/", $curdate ); $filedateparts = explode( "/", $fields[0] ); $curmonth = $curdateparts[0]; $curday = $curdateparts[1]; $curyear = $curdateparts[2]; // dates in first field are stored as // yyyy/mm/dd for purpose of sorting $filemonth = $filedateparts[1]; $fileday = $filedateparts[2]; $fileyear = $filedateparts[0]; $skip = false; if( ($fileyear < $curyear ) || ( ( $filemonth < $curmonth ) && ($fileyear == $curyear) ) || ( ( $fileday < $curday ) && ( $filemonth == $curmonth ) && ($fileyear == $curyear) ) ){ // is event over $skip = true; } if( $skip == false ){ echo "\n". ""; echo "\n"; echo "\n"; $id++; } } echo "

".$filedateparts[1].".".$filedateparts[2].".".$filedateparts[0]." - ".$fields[1].", ".$fields[2]."

".$fields[3]. "   [ Show Details ]
"; echo "
"; echo ""; echo "\n"; echo "
"; if( $fields[14] != "\n" ){ echo "\n

".$fields[14]; } echo "\n

Time: ".$fields[9]."

Venue: 
".$fields[4]."
".$fields[5]."
".$fields[6].", ".$fields[7]." ".$fields[8]. ""; echo "\n

RSVP: 
".$fields[10]."
".$fields[11]."
".$fields[12]."
"; echo "
"; echo "\n
"; } // if count ?>