Jump to content

Checkdate


ecabrera

Recommended Posts

why do i get this checkdate() expects parameter 1 to be long

 

    if(checkdate($month,$day,$year)){
$birthday = mktime(0,0,0,$month,$day,$year);
$diff = time() - $birthday;

$age = floor($diff / 31556926);
	if($age <= 13){
	//if they do eqaull 13
	echo "You must be 13 years old to register";
	}else{
	//make them login
			echo "Register";
	}
    }

Link to comment
https://forums.phpfreaks.com/topic/266137-checkdate/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.