Hallo, vielen Dank für Deine Unterstützung.
Ich habe ein bestehendes System, das muss ich ja weiterentwickeln. Somit sind die Funktionen da, aber nicht von mir geschrieben!!! (und der Code ist ja mehr als blöööd!!!)
was mir fehlt, ist:
ich habe eine DB-Abfrage:
$sql = „SELECT start_time, end_time, (end_time - start_time), firma, contact, description, name, catering, drive FROM $tbl_entry“;
$res = sql_query($sql);
if (! $res) fatal_error(0, sql_error());
ich habe eine Schleife:
while($row=mysql_fetch_array($res))
{
if( $enable_periods )
list( $start_period, $start_date) = period_date_string($row[0]);
else
$start_date = time_date_string($row[0]);
if( $enable_periods )
list( , $end_date) = period_date_string($row[1], -1);
else
$end_date = time_date_string($row[1]);
$duration = $row[2] - cross_dst($row[0], $row[1]);
$firma = htmlspecialchars($row[3]);
$description = htmlspecialchars($row[4]);
$contact = htmlspecialchars($row[5]);
$name = htmlspecialchars($row[6]);
$catering = htmlspecialchars($row[7]);
$drive = htmlspecialchars($row[8]);
$row_count++;
}
$enable_periods ? toPeriodString($start_period, $duration, $dur_units) : toTimeString($duration, $dur_units);
?>
Tabelle mit spalten + Spalten-Ausgabe:
<?php echo get_vocab("visitor") ?>
<?php echo get_vocab("start_date") ?>
<?php echo get_vocab("end_date") ?>
<?php echo get_vocab("duration") ?>
<?php echo get_vocab("firma") ?>
<?php echo get_vocab("description") ?>
<?php echo get_vocab("contact")?>
<?php echo get_vocab("namebooker")?>
<?php echo get_vocab("catering_index")?>
<?php echo get_vocab("drive")?>
<?php echo $start_date ?>
<?php echo $end_date ?>
<?php echo $duration . " " . $dur_units ?>
<?php echo nl2br($firma) ?>
<?php echo nl2br($contact) ?>
<?php echo nl2br($description) ?>
<?php echo nl2br($name) ?>
<?php echo nl2br($catering) ?>
<?php if($row[$drive] == 0)
{ echo get\_vocab("YES") ; }
else
{ echo get\_vocab("NO") ; }
?\>
Nun ist das Problem, Wenn in der Datenbank im Feld "drive" 1 steht, dann schreibe mir in der Ausgabe-Tabelle in der Spalte "drive" ja, wenn 0, dann nein!!!