In php I want to determine if this date is greater than a certain date. How do I do this?
I tried the code below but it obviously doesn't work as they are strings
Code: Select all
if ($signup > '2013-02-23') {
code...
}
Moderator: General Moderators
Code: Select all
if ($signup > '2013-02-23') {
code...
}