date_validate

Definition

date_validate($form)
includes/form.inc, line 1223

Description

Validates the date type to stop dates like February 30, 2006.

Related topics

Namesort iconDescription
Form generationFunctions to enable the processing and display of HTML forms.

Code

<?php
function date_validate($form) {
  if (!checkdate($form['#value']['month'], $form['#value']['day'], $form['#value']['year'])) {
    form_error($form, t('The specified date is invalid.'));
  }
}
?>
 
 

Drupal is a registered trademark of Dries Buytaert.