Jump to content
xisto Community
alexia

Php Clock source Code

Recommended Posts

Hi Every one i find this code its very easy simple php clock i think you can use it :angry:

<?// Binary Clock// script copyrightŠ 2002 Andreas Tscharnuter// questions? contact: psychodad@psychodad.at || [url=http://http://www.psychodad.at/clock/;// free to use, copy and modify but leave comments untouched;)// just include this file where your binary clock should appear// version 1.2   03 September 2003// below you can change different settings// and remember to drink m000re milk!$size =  "40";  //size of one square in pixel (height & width)$hourdiff =  "0";  //difference between server time and local time + or -$bgon =  "#cc0000";	//set color in hex for on (#cc0000 = darkred); check google.com for "hex color table" if you dont know how to use hex colors$bgoff =  "#000000";	//set color in hex for off (#000000 = black); check google.com for "hex color table" if you dont know how to use hex colors $enableclock =	"1";  //switch the "real clock" beneath binary clock on(1) or off(0)/*************************************nothing needs to be changed below here*************************************/$std = str_pad((date("H") + $hourdiff + 24) % 24,2,"0",STR_PAD_LEFT);$min = date("i");$sec = date("s");if ($std > 24 || $std < 0) {	die("<b><font color=\"#cc0000\">$std:$min no way... =)</font></b>");}$std1 = decbin(substr($std,0,1));$std2 = decbin(substr($std,1,1));$min1 = decbin(substr($min,0,1));$min2 = decbin(substr($min,1,1));$sec1 = decbin(substr($sec,0,1));$sec2 = decbin(substr($sec,1,1));function reihe($kette,$anfang,$ende) {  //background output	global $size,$bgon,$bgoff;	$pad = str_pad($kette,4,"0",STR_PAD_LEFT);	if(substr($pad,$anfang,$ende)==1) {  echo "<td width=\"$size\" height=\"$size\" bgcolor=\"$bgon\"> </td>";	} else {  echo "<td width=\"$size\" height=\"$size\" bgcolor=\"$bgoff\"> </td>";	}}?><table cellpadding="0" cellspacing="1" border="0" bgcolor="#000000">	<tr>  <td><table cellpadding="0" cellspacing="1" border="0" bgcolor="#cccccc"><tr>	<td colspan="2" align="center"><i><font face="verdana" size="1">hour</font></i></td>	<td colspan="2" align="center"><i><font face="verdana" size="1">min</font></i></td>	<td colspan="2" align="center"><i><font face="verdana" size="1">sec</font></i></td>	</tr><tr><?	reihe($std1,0,1);	reihe($std2,0,1);	reihe($min1,0,1);	reihe($min2,0,1);	reihe($sec1,0,1);	reihe($sec2,0,1);?></tr><tr><?	reihe($std1,1,1);	reihe($std2,1,1);	reihe($min1,1,1);	reihe($min2,1,1);	reihe($sec1,1,1);	reihe($sec2,1,1);?></tr><tr><?	reihe($std1,2,1);	reihe($std2,2,1);	reihe($min1,2,1);	reihe($min2,2,1);	reihe($sec1,2,1);	reihe($sec2,2,1);?></tr><tr><?	reihe($std1,3,1);	reihe($std2,3,1);	reihe($min1,3,1);	reihe($min2,3,1);	reihe($sec1,3,1);	reihe($sec2,3,1);?></tr><?if ($enableclock == 1) {	//disables,enables bottom clock?><tr>	<td align="center" colspan="2"><font face="verdana" size="1"><? echo $std ?></font></td>	<td align="center" colspan="2"><font face="verdana" size="1"><? echo $min ?></font></td>	<td align="center" colspan="2"><font face="verdana" size="1"><? echo $sec ?></font></td></tr><? } ?></table>  </td>	</tr></table>

Darkmeca - ok first of all you need to put this in quote or code, second you must credit the author of the code. This is your first warning if this happens again further actions will be taken. Thank you.
Edited by darkmeca (see edit history)

Share this post


Link to post
Share on other sites

Also displays information about time:

<?php  print "<p>Current Date: <br><br><strong>";  print date("D d.m.Y G:i:s") . "<br>";  print date("F j, Y, g:i a") . "<br>";  print date("m.d.y") . "<br>";  print date("j, n, Y") . "<br>";  print date("Ymd") . "<br>";  print date('h-i-s, j-m-y, it is w Day z ') . "<br>";  print date('\i\t \i\s \t\h\e jS \d\a\y.') . "<br>";  print date("D M j G:i:s T Y") . "<br>";  print date('H:m:s \m \i\s\ \m\o\n\t\h') . "<br>";  print date("H:i:s") . "<br>";  print "</strong></p>\n";?>

Share this post


Link to post
Share on other sites

analog clock

Php Clock

 

I wanna put/make analog clock in my web page.

But I don't know how..

Can you give me some tips or guide how to make it?

 

-eney

Share this post


Link to post
Share on other sites

how to make this clock auto refresh =?
or go like those flash clocks =) is what i realy meant :)


You could have js do some ajax to get the updated time and format if you wanted to use the php code, but it would just be easier to do the whole thing in js if you want it to update automatically.

Share this post


Link to post
Share on other sites

You could have js do some ajax to get the updated time and format if you wanted to use the php code, but it would just be easier to do the whole thing in js if you want it to update automatically.

thanks.. i dont know ajax.. only php.. dont know js either =D

but i get to it =D

Share this post


Link to post
Share on other sites
Cool Java clockPhp Clock

<script type="text/javascript" src="http://cdn.widgetserver.com/syndication/subscriber/InsertWidget.Js (WIDGETBOX) WIDGETBOX.RenderWidget('6e74a8f1-9e55-4fd3-80ae-c0c522dd9fa5');</script><noscript>Get the <a href="http://flite.com/ Clock</a> widget and many other <a href="http://flite.com/ free widgets</a> at <a href="http://flite.com/;

Java script for  clock

-reply by MegaScript

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.