Hallo,
ich habe folgendes Problem: Ich möchte auf ein bestimmtes Datum (aus der DB) 1 Tag addieren. Ich habe dann folgendes geschrieben:
[COLOR=#ff0000][COLOR=#ff0000][COLOR=black]Der echo Befehl gibt mir den heutigen tag plus 1 aus anstatt das 'datum1' plus 1, warum????? [/COLOR][/COLOR][/COLOR]
[COLOR=#ff0000][COLOR=#ff0000][COLOR=#000000]Für jeden Tipp wäre ich dankbar![/COLOR][/COLOR]
[/COLOR]
ich habe folgendes Problem: Ich möchte auf ein bestimmtes Datum (aus der DB) 1 Tag addieren. Ich habe dann folgendes geschrieben:
PHP-Code:
<?
$result= mysql_query
("SELECT *,
MONTH(`frist`), YEAR(`frist`),DAY(`frist`),
DATE_FORMAT(frist, '%d.%m.%y') as datum1,
FROM ww,$db_link);
$ende_timestamp= strtotime($row[datum1]);
$ein_tag_mehr= strtotime('+1 day',$ende_timestamp);
echo date('d.m.Y',$ein_tag_mehr); ?>
[COLOR=#ff0000][COLOR=#ff0000][COLOR=#000000]Für jeden Tipp wäre ich dankbar![/COLOR][/COLOR]
[/COLOR]
Kommentar