Jump to content

Recommended Posts

These are both in the same php file, I am expecting it to state "day exceeded", as this month ends on the 30th - I have verified this by echoing too...

 

I know it must be something silly, just scratching my head here  ::)

 


	if (dayofMonthExceeded("31") == true) {
		echo "day exceeded";
	} else {
		echo "day NOT exceeded";
	}


 



function dayofMonthExceeded($givenDay) {
	if ($givenDay > date("t",$t)) {
		return true;
	} else {
		return false;
	}
}

What's inside $t? Just remove it if you want to compare with the current month:

 

<?php
function dayofMonthExceeded($givenDay) {
	if ($givenDay > date("t")) {
		return true;
	} else {
		return false;
	}
}
?>

 

And you won't need to compare what's returned with true:

 

<?php
	if (dayofMonthExceeded("31")) {
		echo "day exceeded";
	} else {
		echo "day NOT exceeded";
	}
?>

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.