nternational Text Date is used to display dates
into selected language (examples: En, Fr, De, Es or Se) on your web
page. Makes it easy if you have visitor from multiple countries.
Installs on PHP supported server and a code sniplet goes on your page.
International Text Date Version 1.0
What is it ?
International Text Date display date into selected language
(only yeat: En, Fr, De, Es or Se) in your web site.
System Requirements:
- A web server, with PHP3 or newer;
Download current version
Current version is v1.0, created 02/28/2000, last modified 02/28/2000.
What this archive contains ?
This archive comes with 4 files:
1) COPYING: Copyright informations (GPL).
2) README: This file.
3) LISEZMOI: French doc...
4) idate_graph.php: The PHP script.
5) test.php: Sample file.
Installation and Configuration:
It's a PHP script, so installation is pretty easy.
Copy 'idate_graph.php' and 'test.php' in your good directory.
How to run it ?
Insert code into your web page.
<?php require "idate_txt.php"; ?>
<?php echo date_international("XYZ", "LNG", ""); ?>
LNG : is Language selected (En, Fr, De, Es or Se)
XYZ is date format :
d - day of the month, numeric, 2 digits (with leading zeros)
D - day of the week, textual, 3 letters; i.e. "Fri"
F - month, textual, long; i.e. "January"
h - hour, numeric, 12 hour format
H - hour, numeric, 24 hour format
i - minutes, numeric
j - day of the month, numeric, without leading zeros
l (lowercase 'L') - day of the week, textual, long; i.e. "Friday"
m - month, numeric
M - month, textual, 3 letters; i.e. "Jan"
s - seconds, numeric
U - seconds since the epoch
Y - year, numeric, 4 digits
w - day of the week, numeric, 0 represents Sunday
y - year, numeric, 2 digits
Version history:
Version 1.0 02/28/2000 - Script Created.
|