Hallo ich bräuchte nochmal Eure Hilfe:
ich hab da ein Script geschrieben, welches nicht so tut wie ich will (es gibt nähmlich gar nichts aus und macht gar nichts - obwohl es eigentlich sollte)
Vll findet ja jemand den Fehler!:
ich hab da ein Script geschrieben, welches nicht so tut wie ich will (es gibt nähmlich gar nichts aus und macht gar nichts - obwohl es eigentlich sollte)
Vll findet ja jemand den Fehler!:
PHP:
<?php
include "../config.php";
$anzahl_tage=date("t");
$monat=date("n");
$jahr=date("Y");
$tag=date("j")
echo "$tag $monat $jahr";
if($tag<10)
{
<meta http-equiv="refresh" content="10; URL=dienstplan.php">
echo "<h1>Der Dienstplan des Folgemonats kommt erst am 10. </h1>";
}
else
{
if(mysql_query("SELECT Tag FROM `$jahr-$monat` LIMIT 0"))
{
<meta http-equiv="refresh" content="10; URL=dienstplan.php">
echo"<h1>Der Dienstplan für den folgemonat ist bereits erstellt.</h1>";
}
else
{
echo"<h1>Dies ist der erste Besuch eines RDlers nach dem 10. <br>Der Dienstplan für dem Folgemonat wird erstellt. Dies kann einen kleinen Augenblick dauern!</h1>";
$qr = mysql_query("CREATE TABLE `$jahr-$monat` (`Tag` int(2) NOT NULL default 0, `RTWT1` char(3) NOT NULL default '0', `RTWT2` char(3) NOT NULL default '0', `RTWT3` char(3) NOT NULL default '0', `RTWN1` char(3) NOT NULL default '0', `RTWN2` char(3) NOT NULL default '0', `RTWN3` char(3) NOT NULL default '0', `KTW21` char(3) NOT NULL default '0', `KTW22` char(3) NOT NULL default '0', `KTW23` char(3) NOT NULL default '0', `KTW31` char(3) NOT NULL default '0', `KTW32` char(3) NOT NULL default '0', `KTW33` char(3) NOT NULL default '0', `KTW41` char(3) NOT NULL default '0', `KTW42` char(3) NOT NULL default '0', `KTW43` char(3) NOT NULL default '0', `KTW51` char(3) NOT NULL default '0', `KTW52` char(3) NOT NULL default '0', `KTW53` char(3) NOT NULL default '0', `KTW61` char(3) NOT NULL default '0', `KTW62` char(3) NOT NULL default '0', `KTW63` char(3) NOT NULL default '0', `KTW71` char(3) NOT NULL default '0', `KTW72` char(3) NOT NULL default '0', `KTW73` char(3) NOT NULL default '0', `KTW81` char(3) NOT NULL default '0', `KTW82` char(3) NOT NULL default '0', `KTW83` char(3) NOT NULL default '0', `KTW91` char(3) NOT NULL default '0', `KTW92` char(3) NOT NULL default '0', `KTW93` char(3) NOT NULL default '0', PRIMARY KEY (`Tag`)) TYPE=MyISAM;");
i=1;
while(i<$anzahl_tage+1)
{
$wochentag=date("w", mktime(0, 0, 0, $monat, $tag, $jahr);
switch($wochentag)
{
case 0:
$qr = mysql_query("INSERT INTO `$jahr-$monat` VALUES ($i, '0', '0', '0', '0', '0', '0', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', '0', '0', '0', '0', '0', '0')");
break;
case 1:
case 2:
case 3:
case 4:
$qr = mysql_query("INSERT INTO `$jahr-$monat` VALUES ($i, '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x')");
break;
case 5:
$qr = mysql_query("INSERT INTO `$jahr-$monat` VALUES ($i, '0', '0', '0', '0', '0', '0', 'x', 'x', 'x', 'x', 'x', 'x', '0', '0', '0', '0', '0', '0', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x')");
break;
case 6:
$qr = mysql_query("INSERT INTO `$jahr-$monat` VALUES ($i, '0', '0', '0', '0', '0', '0', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', 'x', '0', '0', '0', '0', '0', '0', 'x', 'x', 'x', 'x', 'x', 'x')");
break;
}
}
}
?>