![]() |
|
| |||||||
| Notices |
| mySQL & PHP Discussions, information and help with mySQL and PHP. |
![]() |
| | LinkBack | Thread Tools |
|
#1
| ||||
| ||||
|
Is there a script, that will look to see what time it is on the server, and at a certain time, use one set of code, and at another time use another set of code? Example. Because our center is not open 24 hours a day, on my webcam pages, it would be cool if I could get them to display, Sorry We're Closed Instead of pulling up the JavaClient for the webcam. I know this is beyond tech support, was just wondering if there was a way...
__________________ |
|
#2
| ||||
| ||||
|
Figured this out if anyone wants to know. Make sure you are creating a .php page with BVoda Code: <?php
// Get Time
$now = localtime(time(), 1); ?>
<?php
// Check if current hour is between 23:00 (11:00 PM) and 10:59 AM
if ((intval($now['tm_hour']) > 22) || (intval($now['tm_hour']) < 11)) {
// Output is Closed
echo '<center> <FONT style="FONT-SIZE:12pt" color="#FF0000" face="Arial"><B>WebCam Operates Only Between the hours of<br>11am - 11pm est</B></FONT> </center>';
}
else {
// Output Webcam
echo
'<APPLET CODE="SimpleCamApplet2.class" CODEBASE="local IP:8080/" WIDTH="320" HEIGHT="240">
<PARAM NAME="SERVER" VALUE="Local IP Address">
<PARAM NAME="PORT" VALUE="8080">
<PARAM NAME="URI" VALUE="/video">
</APPLET>';
} ?>
__________________ |
|
#3
| ||||
| ||||
|
well done
__________________ VodaHost Your Website People! 1-302-283-3777 North America / International 07092887580 / United Kingdom Military Ranking System Explained Click Here to take the royal VodaHost Tour Click Here for the VodaHost Help Centre & Tutorials Got a question? - Try a forum search! Available at the top of every page! |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| 10 Commandments To Maximizing Your Time In Forum Participation | VodaBot | Start your own community forum | 4 | 07-27-2006 07:13 PM |
| How to get access to the CONTROL PANEL? | WannaBe | CPanel - Control Panel | 12 | 12-26-2005 06:43 PM |
| control panel | motoxnuthouse | General Support Issues | 1 | 09-08-2005 02:35 AM |
| cannot access control panel | bluetrooper | CPanel - Control Panel | 1 | 08-07-2005 11:28 PM |
| Control Panel Time Zone | corn | CPanel - Control Panel | 1 | 06-20-2005 01:52 PM |