Jump to content

[SOLVED] Check to see if a date is in the future.


tet3828

Recommended Posts

I have really been struggling find a way to validate in a form weather the entered date is greater than the current date.

 

here is my first attempt which failed wose than the wright brothers first attempt at flying.

 

// establish entered date variables
$eYear = $_POST['eYear'];
$eDay = $_POST['eDay'];
$eMonth = $_POST['eMonth'];

// get current date turn it into variables
$dateVar = getdate();
$cYear = $dateVar['year'];
$cMonth = $dateVar['mon'];
$cDay = $dateVar['mday'];		

// combine dates into a long string 
$dateCurrent = $cYear.''.$cMonth.''.$cDay;
$dateEntered = $eYear.''.$eMonth.''.$eDay;

if ($dateCurrent < $dateEntered) { // show error }

 

any links to scripts or suggestions?

 

 

Link to comment
Share on other sites

// establish entered date variables
$eYear = $_POST['eYear'];
$eDay = $_POST['eDay'];
$eMonth = $_POST['eMonth'];

$eDate=strtotime("$eYear-$eDay-$eMonth");

// get current date turn it into variables
$curDate = time();

// combine dates into a long string 

if ($curDate < $eDate) { // show error }

 

converting to a numeric format simplifies the check. thus reason for using time() :)

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.