Phpfr3ak Posted December 20, 2011 Share Posted December 20, 2011 Just a selection of the code that's relevant basically its always showing as over 1 hour, even if its one minute i really cannot see why i want it to countdown to 55 of every hour but instead of being 1 minute for example it will say 61, any ideas from my code below? <?php $HourOn = date('G'); $MinuteOn = 55; if($HourOn == $HourOn || $MinuteOn > $MinuteOn){ $HourOn = date('G') + 1; $MinuteOn = 55; } else { $MinuteOn = 55; $HourOn = date('G'); } ?> dateFuture1 = new Date(<?php echo date('Y'); ?>,<?php echo date('m') - 1; ?>,<?php echo date('d'); ?>,<?php echo $HourOn;?>,<?php echo $MinuteOn; ?>,0); Quote Link to comment https://forums.phpfreaks.com/topic/253548-phpjavascript-unsure/ Share on other sites More sharing options...
cyberRobot Posted December 20, 2011 Share Posted December 20, 2011 Try changing the or (||) to and (&&) in the if statement: <?php //... if($HourOn == $HourOn && $MinuteOn > $MinuteOn){ //... ?> Quote Link to comment https://forums.phpfreaks.com/topic/253548-phpjavascript-unsure/#findComment-1299725 Share on other sites More sharing options...
The Little Guy Posted December 20, 2011 Share Posted December 20, 2011 the if statement has a value that will ALWAYS return true, $HourOn will ALWAYS equal $HourOn Also, $MinuteOn will never be less that $MinuteOn Quote Link to comment https://forums.phpfreaks.com/topic/253548-phpjavascript-unsure/#findComment-1299776 Share on other sites More sharing options...
AyKay47 Posted December 20, 2011 Share Posted December 20, 2011 bottom line. if($HourOn == $HourOn || $MinuteOn > $MinuteOn) makes no sense, what are you trying to achieve here? Quote Link to comment https://forums.phpfreaks.com/topic/253548-phpjavascript-unsure/#findComment-1299788 Share on other sites More sharing options...
cyberRobot Posted December 20, 2011 Share Posted December 20, 2011 Ah, should have looked at the if() a little closer. Quote Link to comment https://forums.phpfreaks.com/topic/253548-phpjavascript-unsure/#findComment-1299792 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.