please help me to solve this case,
dear.all.
ref: foreach ($getvalue as $isi){if ($isi->eventHour == "00.01-00.30" is a data from database
$clock_now == clock now
$sdate = choice day
$today = today
this is my script checkbox disable
<?php
foreach ($getvalue as $isi){
if ($isi->eventHour == "00.01-00.30" or $clock_now >= "00.02" and $sdate == $today)
echo 'disabled';
}
?>
if foreach have a value/true then, this script output is echo disable
but when foreach not have value/false then this script output is not display echo disable
the question is
how to display echo 'disabled' where foreach not have a value?
so or $clock_now >= "00.02" and $sdate == $today is work and display echo disabled
thanks a lot
sory for my bad english
Best regard
Puja
falseorempty? whats complication on this ? – Red Apr 17 '12 at 4:08