
January 23rd, 2013, 08:53 PM
|
|
Contributing User
|
|
Join Date: Jun 2009
Posts: 294
  
Time spent in forums: 3 Days 8 h 5 m 6 sec
Reputation Power: 5
|
|
Have you attempted any If/Then yet with this setup? A simple If/Then with desired values make this extremely basic. Perhaps set a variable with your items like:
PHP Code:
if($id == 11) {
$time = "9:15";
} else {
$time = "8:00";
}
Or a simple shorthand version:
PHP Code:
$time = ($id == 11 ? "9:15" : "8:00");
You may even attempt to slip the shorthand version directly into your echo. Whatever works best for ya. Good luck!
|