tqla Posted December 9, 2008 Share Posted December 9, 2008 I wish to create a script that will allow me to show a flash movie on a webpage for a predetermined amount of time. Like "show this movie from dec 25 - 28th". Sort of like a simple banner ad script, but with a flash movie. Can someone point me in the right direction? Some starter code would help greatly, or a link to php functions that will get me going. Thanks Link to comment https://forums.phpfreaks.com/topic/136260-solved-simple-banner-ad-script-help/ Share on other sites More sharing options...
rhodesa Posted December 9, 2008 Share Posted December 9, 2008 <?php if(time() >= strtotime('2008-12-25') && time() < strtotime('2008-12-29')){ ?> code for movie here <?php } ?> Link to comment https://forums.phpfreaks.com/topic/136260-solved-simple-banner-ad-script-help/#findComment-710786 Share on other sites More sharing options...
tqla Posted December 9, 2008 Author Share Posted December 9, 2008 Thank you rhodesa! Link to comment https://forums.phpfreaks.com/topic/136260-solved-simple-banner-ad-script-help/#findComment-710846 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.