Its a habit of mine from JAVA. only started PHP bout a month ago. Have the code here for the date validation function:
it takes in a date in the format dd-mm-yy
function isDateValid($strDate)
{
$dayArray=array(0,31,28,31,30,31,30,31,31,30,31,30,31);
if...