WeberDev.com PHP and MySQL Code

LOG IN
BEGINNER GUIDES  |  PHP CLASSES  |  CODE SEARCH  |  ARTICLES SEARCH  |  PHP FORUMS  |  PHP MANUAL  |  PHP FUNCTIONS LIST  |  WEB SITE TEMPLATES
Start typing to search for PHP and MySQL Code Snippets and Articles Search
Submit a code Example / Snippet Submit Your Code
Search Engine Optimization Monitor SEO Monitor
Web Site UpTime Monitor UpTime Monitor
WeberDev's Monthly code contest PHP Code Contest
Your Personal Examples List My Favorite Examples
Your Personal Articles List My Favorite Articles
Edit Account Info Update Your Profile
PHP Code Search
Web Development Forums
Learn MySQL Playing Trivia
PHPBB2 Templates
Web Development Index
PHP Web Logs (BLogs)
Web Development Resources
Web Development Content
PHPClasses
PHP Editor
PHP Jobs
Vision.To Design
Ajax Tutorials
PHP Programming Help
PHP/MySQL Programming
Webmaster Resources
Webmaster Forum
XML meta language
website builder
Forex Trading Online forex trading platform

Go Back Add a Comment Send this example to a friend Add this Article to your personal favoritest for easy future access to your favorite Code Examples and Articles. Submit a code example Print this code example.
BACK ADD A COMMENT SEND TO A FRIEND ADD TO MY FAVORITES ADD CODE EXAMPLES PRINT
Title : Conversion of US Date into German Date - Konvertierung des US-Datums in das deutsche. Version 1.0.1
Categories : Date Time, Misc Update Picture
Mark Kronsbein
Date : May 18th 1999
Grade : 2 of 5 (graded 2 times)
Viewed : 4330
File : No file for this code example.
Images : No Images for this code example.
Search : More code by Mark Kronsbein
Action : Grade This Code Example
Tools : My Examples List

  Submit your own code examples 
 

<?
/**************************************************************************
* Konvertierung des US-Datums in das deutsche
* Auf http://www.gabber.de/ sieht man ein Beispiel ;-))
*
* Autor: Mark Kronsbein (mk@html-design.com)
* Datum der letzten Änderung: 18. Mai 1999
* Anmerkung: Der meiste Code an diesem Script stammt von
* Frédéric Pierron (pierron@ext.jussieu.fr)
* Ich habe den Code nur modifiziert und übersetzt.
*
* License: GPL. Wäre nett, wenn ich eine Mailbekommen würde,
* wo das Script eingesetzt wird
*
* Conversion of US Date into German Date
* See http://www.gabber.de/ for "working" Example ;-))
*
* Author: Mark Kronsbein (mk@html-design.com)
* Last Modified Date: 18 May 1999
* NOTE: Most of this code is made by
* Frédéric Pierron (pierron@ext.jussieu.fr)
* I just translated it and modified it a bit.
*
* License: GPL. Would be nice, if you mail me the URL you run this Script
*
* Original script:
* http://px.sklar.com/code-pretty.html?code_id=112
* http://px.sklar.com/code.html?code_id=112
*
* Einfach alles unten in ein File namens date.inc kopieren und dann wie folgt aufrufen:
* Just include everything below in a file called date.inc. Example call:
*
* <?
* include ("date.inc");
* print "Heute ist $tag, der $n. $monat $jahr";
* print (date( " H:i:s"));
* ?>
**************************************************************************/

/* Start von date.inc
Start of date.inc */

/* Zeitzone auf Mitteleuropäische Zeit umstellen
falls der Server nicht in DE steht. Sonst auskommentieren.
If the Server is not in Germany, set the right Timezone. */

putenv( "TZ=MET");

/* Name der Tage auf deutsch */
/* Name of days in German */

$name_tag[0] = "Sonntag";
$name_tag[1] = "Montag";
$name_tag[2] = "Dienstag";
$name_tag[3] = "Mittwoch";
$name_tag[4] = "Donnerstag";
$name_tag[5] = "Freitag";
$name_tag[6] = "Samstag";

/* Name der Monate auf deutsch */
/* Name of months in German */

$name_monat[1] = "Januar";
$name_monat[2] = "Februar";
$name_monat[3] = "M&auml;rz";
$name_monat[4] = "April";
$name_monat[5] = "Mai";
$name_monat[6] = "Juni";
$name_monat[7] = "Juli";
$name_monat[8] = "August";
$name_monat[9] = "September";
$name_monat[10] = "Oktober";
$name_monat[11] = "November";
$name_monat[12] = "Dezember";


$num_tag = date( "w");
$num_monat = date( "m");

/* Test, ob der aktuelle Monat < 10 ist */
/* Test, if the current month is < 10th month */

$test = substr($num_monat,0,1);
if ($test == "0") {
$num = substr($num_monat,1,1);
$num_monat = $num;
}


$jahr = date( "Y");
$n = date( "d");
$tag = $name_tag[$num_tag];
$monat = $name_monat[$num_monat];

/* Ende von date.inc
End of date.inc */

?>



time date modified changed last getlastmod last footer
Categories : Misc, Date Time
Flags of the world
Categories : Misc
Select with current month
Categories : PHP, HTML and PHP, Date Time, Arrays
Calendar using Date function
Categories : HTML and PHP, PHP, Date Time, Calendar
Clock at Status Bar
Categories : Java Script, HTML, Date Time
Simple Javascript CSS Digital Clock
Categories : Java Script, Date Time, CSS, Beginner Guides, Web Design
Enchancing dd/mm/yyyy forms with unobtrusive javascript
Categories : Java Script, HTML, User Interface, Date Time
PHP Round Clock - Must have Gif support to use this.
Categories : PHP, Date Time, Graphics
A simple and fast calendar combining PHP and tables. Use this as a base for applications in which a calendar is needed.
Categories : Date Time, PHP, Complete Programs, Calendar
MySql date format function
Categories : MySQL, Date Time, Databases
A Timing Class
Categories : PHP, PHP Classes, Date Time
Creates three SELECT form fields: Month, Day, and Year. You give it a string which will be used to make the name for the three fields, and a number of seconds to use as the default date. If you give it blank for this value, the current date is used.
Categories : HTML and PHP, PHP, Date Time
Finding the day of the week for a specific date.
Categories : PHP, Databases, MySQL, Date Time
If you want to create select buttons featuring current date this example will show you how...
Categories : Date Time, HTML and PHP, PHP
pcCalendar class - Allows for the creation of calendars in HTML pages. All output functions can be easily overridden, refer to article 1471 for an example.
Categories : PHP, Date Time, Calendar, PHP Classes