Jump to content

[SOLVED] validate date input,


gazever

Recommended Posts

Really simple question,

 

someone is using my webpage to book villas, they are entering dates as date from, etc.

 

my GET looks like this,

 

availability_booking.php?villa=newvilla1&date_from=2007-12-14

 

however as input cannot be trusted, I get all villa codes out of sql and put in an array and then check the GET[villa] is inarray before checking the availability.

 

after this I then check for booked dates,

 

id there a simple way of checking to see if the date from day is in the future or not before checking the database,

 

many Thanks

Link to comment
Share on other sites

 

try this

 

*untested

 

<?php
if ($date($_GET['date_from']))
{
echo "valid";
}else{
echo "invalid";
}

function validDate($date)
{
if (preg_match('%((?:19|20)[0-9]{2})[- /.](0[1-9]|1[012])[- /.](0[1-9]|[12][0-9]|3[01])%s', $date, $regs)) {
return checkdate($regs[2], $regs[3], $regs[1]);
} else {
return false;
}
}

?>

Link to comment
Share on other sites

Hi

 

I have a function which supposedly checks if its a valid date or not,

 

Sorry guess I didn't make the original question very clear,

 

What I'm trying to decide is if the date is in the past or not, i.e. yesterday, 3 weeks ago etc.

 

here is my date checking function:

function date_checker($date) {

$bits_of_date = explode("-", $date);

 

$dd = $bits_of_date[2];

$mm = $bits_of_date[1];

$yy = $bits_of_date[0];

 

    if (is_numeric($yy) && is_numeric($mm) && is_numeric($dd))

    {

$tocheck = date('Y-n-j', mktime(0, 0, 0, $mm, $dd, $yy));

$tocheck = explode("-", $tocheck);

return checkdate($tocheck[1],$tocheck[2],$tocheck[0]);

 

    }

    return false;         

}

Link to comment
Share on other sites


<?php
if (validDate($_GET['date_from']))
{
echo "valid";
}else{
echo "invalid";
}

function validDate($date)
{
if (preg_match('%((?:19|20)[0-9]{2})[- /.](0[1-9]|1[012])[- /.](0[1-9]|[12][0-9]|3[01])%s', $date, $reg
s))
{
	if(checkdate($regs[2], $regs[3], $regs[1]))
	{
		$tTime = mktime(0, 0, 0, $regs[2], $regs[3], $regs[1]);
		return ($tTime < time());
	}
}
return false;
}

?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.