webinar automation script needed

by 4 replies
5
I'm looking for a script that will allow a video to play at a designated time (i.e. like a live webinar.

I can't remember but some time ago there was such a script circling the internet.

Any suggestions would be great. Also will entertain hiring a programmer.

Thanks
#programming #automation #needed #script #webinar
  • This may be overly simplistic for what you want, but it does fit the bill to "allow a video to play at a designated time".

    It simply checks the time, and if it's after the "unlock" time, the video would load on the page.

    PHP Code:
    <?php
    if (time()>strtotime('09 May 2010 08:00 EST')){
       echo 
    '{ put your video display code in here }';
    } else {
       echo 
    'Video coming soon';
    }
    -Ryan
    • [1] reply
    • Get out of here...it can't be this simple. Testing this code right now!

      Also Ryan am I placing code before </head>?
      • [1] reply

Next Topics on Trending Feed