我有以下问题,我有一个包含以下列的 mysql 表,
-name
-address
-zipcode
-etc.
我在我的 php 代码中有一个像这样的表:
<table class="listing" cellpadding="0" cellspacing="0">
<tr>
<th>Company name</th>
<th>Adress</th>
<th>Zipcode</th>
<th>more</th>
<th>more</th>
<th>more</th>
<th>more</th>
<th>more</th>
</tr>
</table>
我想要的是,当有人创建一家公司时,它将显示一行来自 mysql 的数据,就像这样:
公司地址 邮编
1 1 1
2 2 2
有人能帮我吗?
编辑:
一些额外的代码:
<div id="center-column">
<div class="select-bar">
Bedrijven:
</div>
<div class="table">
<table class="listing" cellpadding="0" cellspacing="0">
<tr>
<th>Company name</th>
<th>Adress</th>
<th>Zipcode</th>
<th>more</th>
<th>more</th>
<th>more</th>
<th>more</th>
<th>more</th>
</tr>
</table>
</div>
<div class="table">
</div>
</div>
<div id="right-column">
<strong class="h">Info</strong>
<div class="box"><strong>Gebruikersnaam:</strong> <?php echo $naam ?><br />
</div>
</div>
</div>
<div id="footer"></div>
</div>
</body>
</html>
<?php else : ?>