Time, holidays

Web-master / Forms on the website / Widgets

Time, holidays

Time, alarm clock | Feasts | Archive of Internet | What where when

Today

Script in PHP.

<?
$mese[0]="-";
$mese[1]="January";
$mese[2]="February";
$mese[3]="March";
$mese[4]="April";
$mese[5]="May";
$mese[6]="June";
$mese[7]="July";
$mese[8]="Augusta";
$mese[9]="September";
$mese[10]="October";
$mese[11]="November";
$mese[12]="December";

$mesnum=(int)date("m");

echo date("j")." ".$mese[$mesnum]." ".date("Y");
?>

Example 19 April 2024


Orthodox Easter

Script in PHP.

<?
$mese[0]="-";
$mese[1]="January";
$mese[2]="February";
$mese[3]="March";
$mese[4]="April";
$mese[5]="May";
$mese[6]="June";
$mese[7]="July";
$mese[8]="Augusta";
$mese[9]="September";
$mese[10]="October";
$mese[11]="November";
$mese[12]="December";

$mesnum=(int)date("m");

$year=date("Y");

$date=easter_date($y);

$year=date ( "Y", $date);
$r1=$year % 19 ;
$r2=$year % 4 ;
$r3=$year % 7 ;
$ra=19 * $r1 + 16 ;
$r4=$ra % 30 ;
$rb=2 * $r2 + 4 * $r3 + 6 * $r4 ;
$r5=$rb % 7 ;
$rc=$r4 + $r5 ;

if ($rc<28)
    echo 3+$rc . " April " . $year;
else
    echo $rc-27 . " MAy " . $year;
?>

Example 5 MAy 2024


Catholic Easter

Script in PHP.

Code (Address and title are automated) <?
$mese[0]="-";
$mese[1]="January";
$mese[2]="February";
$mese[3]="March";
$mese[4]="April";
$mese[5]="May";
$mese[6]="June";
$mese[7]="July";
$mese[8]="Augusta";
$mese[9]="September";
$mese[10]="October";
$mese[11]="November";
$mese[12]="December";

$mesnum=(int)date("m");

    $world=date ("j", easter_date());
    $wmonth=date ("n", easter_date());

echo $world . " " . $mese[$wmonth] . " " . date("Y");
?>

Example 31 March 2024

Russian - Englesh

reliable site

Owner: Yandex
address: Russia, Moscow

Yandex.Time

An informer of time on his website.

Time in different cities

The service helps to keep track of time in four cities at once. By default, this is the city where the user is located, and the three largest exchange capitals - London, New York and Tokyo.
If desired, the user can choose any city and keep the current time in front of his eyes in the most important places for him.
Two designs of dials - day and night (the night proceeds from 10 evenings till 6 mornings). In addition to time, the dials show the weather.

Time difference

To find the difference in time between two cities, you need to enter their names in the search lines.
Cyrillic and Latin are acceptable.
As the name is entered, suitable cities are offered in the drop-down list.
On it you can move the cursor, the choice is confirmed by the Enter key.




Russian
address: Russia
Configurable timer generator.
Set the starting point, time zone, style.
Choose from the offered and we can change the color, the size of the fragments ...
We take the code and use it.