Jump to content

how to change image according to time (PHP)


Recommended Posts

I am working on Radio website where i have to show image of program that's on air according to name of day and time. i made something that works but it works for hours not for minutes. i want it to be shown by minutes

like some program is from 04:30AM to 05:00AM. my code only works for hours like 04:00 AM to 05:00AM..

i created a function that gets program name according to name of day.

here's is how my code looks like



function get_program_name($name_of_day){ //
date_default_timezone_set('Asia/Kathmandu'); //Asia/Kathmandu.
$timehour=date('h');
switch ($name_of_day) { //switching case starts here

case 'Sunday':
if (05<=$timehour && &timehour <06) { // 05:00AM to 06:00AM
$current_program='current_program.jpg';
$upcoming_program='upcoming_program.jpg'

elseif (06<=$timehour && timehour <07) { // 06:00AM to 07:00AM
$current_program='current_program.jpg';
$upcoming_program='upcoming_program.jpg'
}
}
break;

case 'Monday':

break;

case 'Tuesday':

break;

case 'Wednesday':

break;

case 'Thrusday':

break;

case 'Friday':

break;

case 'Saturday':

break;

default:
echo "Something went wrong!!";
break;
}//case closes here
}//function closes here
get_program_name('Sunday');

thanks in advanced..

Edited by sanjeev18
Link to comment
Share on other sites

  • 3 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...