hi!
i have requested the selected date from another page and the current date is taken from session. now i want to check one condition that if the selected date is greater than the todays date then open a form else do not open. but the date comparison code is not working. here is my code
$user_sel_date=$_REQUEST['myseldate'];
$mycurrentdate=$_SESSION['mycurrdate'];
if ($user_sel_date >= $mycurrentdate) {
echo "inside the if";
}
else
echo "outside the if";