Thank you for replying so quickly. Your function worked perfectly.
Take care
-Animaze
Main Topics
Browse All TopicsHello, I am looking to implement a way to display a contact form on a website to have a sales person call back a customer, but only during business hours between 9:00 AM & 5:00PM.
I've tried to wrap my head around it but am not having any luck. This would just be a way to check if the time of day is between two specified hours and return true if it is and false if it isn't - perhaps a function like this, where a start and end time are entered.
checkBizHours('9:00 AM', '5:00 PM');
Here is where I was going with this, but it's not working:
$current_time = date('h:i A');
if ($current_time >= '09:00 AM' AND $current_time <= '05:00 PM')
{
echo "The time is now $current_time. The doctor is in.";
} else {
echo "The time is now $current_time. The doctor is out.";
}
I'm probably just way off, but any help shedding some light on this would be greatly appreciated. All my searches on the matter have turned up nothing so far.
Thanks,
Animaze
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: ed987Posted on 2007-12-28 at 01:57:26ID: 20540704
function checkBizHours($a,$b) rtotime($b ))?1:0;
{
$t=time(0);
return ($t>=strtotime($a)&&$t<=st
}