pragmaMx Support Forum

pragmaMx => Allgemeines => Thema gestartet von: smartmusic am 19 August 2005, 11:24:46

Titel: Datumsformat
Beitrag von: smartmusic am 19 August 2005, 11:24:46
hallo,

habe in dem profil auch drin stehen seit wann es mitglied ist

also in der mx_userfunctions_options.php $user_regdate

nur wird das datum so ausgegeben:
May 15, 2004

wie kann ich das auf
15 Mai 2004

umstellen???
Titel: Re: Datumsformat
Beitrag von: taranis am 19 August 2005, 12:12:21
Hi,

z.B. so:

$uinfo['user_regtime'] = date ("d.m.Y", $uinfo['user_regtime']);
echo "<tr valign=\"top\"><td bgcolor=\"$bgcolor2\"><b>Bei ... seit:</b></td><td bgcolor=\"$bgcolor3\">".$uinfo['user_regtime']."</td></tr>\n";


Andy
Titel: Re: Datumsformat
Beitrag von: smartmusic am 19 August 2005, 12:20:02
danke ;)