So I have a date stored in a table as a string (eg. 2-14-2014) I'm pretty sure that puts it in the format of m-j-Y, j because there are no leading zeros. How would I go about comparing this with todays date? I want to be able to have something that looks like:
if(event_date>today){
//send data to app
}else{
//delete item from table
}
Thank you in advance,
Tyler