Hallo,
habe ein Problem.
Habe eine Excel-Tabelle in SQL importiert und möchte nun diese Tabelle als Website darstellen.
In der Tabelle gibt es mehrere Leere Felder, weil es optionale Felder sind.
Hier erst mal mein Code bis jetzt:
Nun sollen in der Tabelle auf der Website auch die leeren Felder als leer dargestellt werden, also es soll nichts drinne stehen, aber das Feld soll vorhanden sein.
Bis jetzt ist es so das wenn ein Feld leer ist das das nachfolgende Feld "aufrutscht" und so die ganze Tabelle nicht mehr einheitlich macht.
Als Beispiel:
Das Feld "Inventur" ist nicht immer gefüllt, daher rutscht der Inhalt des Feldes Kommentar nun ein Stück vor, so das Inhalt Kommentar unter dem Begriff "Inventur" steht.
Wie kann ich das Problem lösen?
Gruß
Dennis
habe ein Problem.
Habe eine Excel-Tabelle in SQL importiert und möchte nun diese Tabelle als Website darstellen.
In der Tabelle gibt es mehrere Leere Felder, weil es optionale Felder sind.
Hier erst mal mein Code bis jetzt:
PHP-Code:
<?
//Datenbank einbinden
include("dbconnect.php");
//Abfrage
$abfrage = "SELECT * FROM aktiv";
$ergebnis = mysql_query($abfrage);
?>
<?
//Tabellenkopf Index
?>
<table border="1">
<tr>
<td width="75">
Inventur
</td>
<td width="125">
Kommentar
</td>
<td width="75">
Anwendung
</td>
<td width="75">
Host-ID
</td>
<td width="75">
System-ID
</td>
</tr>
</table>
<?
//Ausgabe
while($row = mysql_fetch_object($ergebnis))
{
?>
<table border="1">
<tr>
<td width="75">
<?
echo $row->inventur;
?>
</td>
<td width="125">
<?
echo $row->kommentar;
?>
</td>
<td width="75">
<?
echo $row->anwendung;
?>
</td>
<td width="75">
<?
echo $row->hostid;
?>
</td>
<td width="75">
<?
echo $row->systemid;
?>
</td>
<td width="75">
<?
echo $row->assetid;
?>
</td>
<td width="75">
<?
echo $row->hacmpcluster;
?>
</td>
<td width="75">
<?
echo $row->seriennr;
?>
</td>
<td width="75">
<?
echo $row->seriennr.rack;
?>
</td>
<td width="75">
<?
echo $row->typ;
?>
</td>
<td width="75">
<?
echo $row->art;
?>
</td>
<td width="75">
<?
echo $row->ola;
?>
</td>
<td width="75">
<?
echo $row->ipadresse;
?>
</td>
<td width="75">
<?
echo $row->zushostid1;
?>
</td>
<td width="75">
<?
echo $row->zushostid2;
?>
</td>
<td width="75">
<?
echo $row->zushostid3;
?>
</td>
<td width="75">
<?
echo $row->zushostid4;
?>
</td>
<td width="75">
<?
echo $row->zushostid5;
?>
</td>
<td width="75">
<?
echo $row->zushostid6;
?>
</td>
<td width="75">
<?
echo $row->zushostid7;
?>
</td>
<td width="75">
<?
echo $row->zusipadresse1;
?>
</td>
<td width="75">
<?
echo $row->zusipadresse2;
?>
</td>
<td width="75">
<?
echo $row->zusipadresse6;
?>
</td>
<td width="75">
<?
echo $row->zusipadresse;
?>
</td>
<td width="75">
<?
echo $row->ort;
?>
</td>
<td width="75">
<?
echo $row->strasse;
?>
</td>
<td width="75">
<?
echo $row->raum;
?>
</td>
<td width="75">
<?
echo $row->aix;
?>
</td>
<td width="75">
<?
echo $row->bemerkungen;
?>
</td>
</tr>
<br>
</table>
<?
}
?>
Bis jetzt ist es so das wenn ein Feld leer ist das das nachfolgende Feld "aufrutscht" und so die ganze Tabelle nicht mehr einheitlich macht.
Als Beispiel:
Das Feld "Inventur" ist nicht immer gefüllt, daher rutscht der Inhalt des Feldes Kommentar nun ein Stück vor, so das Inhalt Kommentar unter dem Begriff "Inventur" steht.
Wie kann ich das Problem lösen?
Gruß
Dennis
Kommentar