probleme mit leeren tabellen beseitigt


			
			
				main
			
			
		
cookie 18 years ago
parent f57b0c9137
commit e87e62d953

@ -50,6 +50,9 @@ $SQL = "SELECT `DateS` FROM `Shifts` ORDER BY `DateS` LIMIT 1";
$Erg = mysql_query($SQL, $con);
$Pos=0;
if( mysql_num_rows($Erg)>0)
{
do
{
//Startdatum einlesen und link ausgeben
@ -78,6 +81,7 @@ do
"LIMIT 1";
$Erg = mysql_query($SQL, $con);
} while( mysql_fetch_row($Erg) > 0);
}
$VeranstaltungsTageMax = $Pos-1;
?>

@ -13,9 +13,9 @@ function Printlink( $Datum)
echo "'>$Datum</a></li>\n";
} //function Printlink(
if( isset ($VeranstaltungsTage))
foreach( $VeranstaltungsTage as $k => $v)
{
Printlink( $v);
}
?>

@ -4,6 +4,7 @@
include ("./inc/funktion_schichtplan_aray.php");
if( isset ($Room))
foreach( $Room as $RoomEntry )
{
if(isset($ausdatum))

@ -51,7 +51,10 @@ if( !isset($ausdatum) )
$sql = "SELECT `DateS` FROM `Shifts` ORDER BY `DateS` ASC LIMIT 0, 1";
$Erg = mysql_query($sql, $con);
}
if( mysql_num_rows( $Erg ) > 0 )
$ausdatum = substr(mysql_result($Erg,0,"DateS"),0,10);
else
$ausdatum = gmdate("Y-m-d", time()+3600);
}
@ -61,7 +64,7 @@ if ( !isset($raum) )
{
// Ausgabe wenn kein Raum Ausgewählt:
echo Get_Text("pub_schicht_auswahl_raeume"). "<br><br>\n";
if( isset($Room))
foreach( $Room as $RoomEntry )
echo "\t<li><a href='./schichtplan.php?ausdatum=$ausdatum&raum=". $RoomEntry["RID"]. "'>".
$RoomEntry["Name"]. "</a></li>\n";

Loading…
Cancel
Save