lasse dir mal "$row['workdate']" ausgeben.
Funktioniert auch nicht, die Tabelle ist im Quellcode im Browser sichtbar aber auf der Seite sehe ich nichts, ich denke es ist doch irgendwie ein CSS oder ein HTML Problem.
Trotzdem Danke schonmal, ich schau mir mal das HTML und CSS zeugs nochmal an.
Edit: So, hab jetzt mal was rausgefunden. Komischerweise liegt es an dieser form, die direkt über der Tabelle steht:
PHP
<form method="get" action="payments.php">
<div class="input-group" style="width: 80%; float:left;">
<span class="input-group-addon">Arbeitsplatz:</span>
<select name="workplace" class="form-control input-sm">
<?php
$query = mysql_query("SELECT * FROM workplace WHERE ownerid='$uid'");
while($row = mysql_fetch_array($query)){
echo '<option value="' . $row['id'] . '">' . $row['name'] . '</option>';
}
?>
</select>
</div>
<div class="input-group" style="width:19%; margin-left:1%; float:right;">
<button class="btn btn-primary btn-sm" style="width:100%;" type="submit">Auswählen</button>
</div>
</form>
Alles anzeigen