Jump to content



Welcome to KnowledgeSutra - Dear Guest , Please Register here to get Your own website. - Ask a Question / Express Opinion / Reply w/o Sign-Up!
- - - - -

Php Clock


8 replies to this topic

#1 alexia

    Super Member

  • Kontributors
  • PipPipPipPipPipPipPipPipPip
  • 310 posts
  • Location:Italian
  • Interests:None

Posted 11 March 2005 - 01:11 PM

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://www.psychodad.at/clock/]http://www.psychodad.at/clock/[/url]
// 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\">&nbsp;</td>";
	} else {
  echo "<td width=\"$size\" height=\"$size\" bgcolor=\"$bgoff\">&nbsp;</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, 11 March 2005 - 01:37 PM.


#2 alexia

    Super Member

  • Kontributors
  • PipPipPipPipPipPipPipPipPip
  • 310 posts
  • Location:Italian
  • Interests:None

Posted 11 March 2005 - 01:13 PM

sorry i posting again but i forget told u
you can Customize this clock (font,Size,Color)...

#3 OwrLam

    Newbie [Level 3]

  • Kontributors
  • PipPipPip
  • 46 posts

Posted 17 March 2005 - 05:18 PM

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";
?>


#4 iGuest

    Hail Caesar!

  • Kontributors
  • PipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPip
  • 5,876 posts
  • Interests:Trap17 Free Web Hosting, No Ads

Posted 07 January 2008 - 02:55 AM

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

#5 jlhaslip

    Insert Custom Title Here

  • [MODERATOR]
  • PipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPip
  • 5,037 posts
  • Gender:Male
  • Location:Linux, DOS and Windows…the good, the bad and the ugly
  • Interests:http://jim.haslip.googlepages.com/home
  • myCENT:53.48
  • Spam Patrol

Posted 07 January 2008 - 04:32 AM

Try this site:

http://free-flash-clocks.trap17.com/

#6 coldasice

    Newbie [Level 2]

  • Kontributors
  • PipPip
  • 34 posts
  • Gender:Male
  • Location:Norway

Posted 07 January 2008 - 09:01 PM

how to make this clock auto refresh =?

or go like those flash clocks =) is what i realy meant :)

#7 galexcd

    Trap Grand Marshal Member

  • [MODERATOR]
  • PipPipPipPipPipPipPipPipPipPipPip
  • 1,331 posts
  • Gender:Not Telling
  • myCENT:89.24

Posted 09 January 2008 - 06:43 AM

View Postcoldasice, on Jan 7 2008, 01:01 PM, said:

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.

#8 coldasice

    Newbie [Level 2]

  • Kontributors
  • PipPip
  • 34 posts
  • Gender:Male
  • Location:Norway

Posted 13 January 2008 - 05:41 PM

View Postalex7h3pr0gr4m3r, on Jan 9 2008, 07:43 AM, said:

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

#9 iGuest

    Hail Caesar!

  • Kontributors
  • PipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPipPip
  • 5,876 posts
  • Interests:Trap17 Free Web Hosting, No Ads

Posted 06 July 2009 - 06:02 AM

Cool Java clockPhp Clock

<script type="text/javascript" src="http://cdn.Widgetserver.Com/syndication/subscriber/InsertWidget.Js"></script><script>if (WIDGETBOX) WIDGETBOX.RenderWidget('6e74a8f1-9e55-4fd3-80ae-c0c522dd9fa5');</script><noscript>Get the <a href="http://www.Widgetbox.Com/widget/classic-clock">Classic Clock</a> widget and many other <a href="http://www.Widgetbox.Com/">great free widgets</a> at <a href="http://www.Widgetbox.Com">Widgetbox</a>!</noscript> 

Java script for  clock

-reply by MegaScript




Reply to this topic


This post will need approval from a moderator before this post is shown.

  


1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users