需要从mysql返回一行

时间:2016-05-25 06:59:58

标签: php html mysql

我正在开发一个php网站,我需要显示sql server data的结果。目前主要问题是,当我的代码从sql server 2014获取数据时,它会将字符串分解为新行。但是我希望用一行代表它。就像Nijar Hosssain一样。

enter image description here

我的代码用于从sql server 2014获取数据

<tr>
<td><div align="center"><?php echo $result["Name"];?></div></td>
<td><?php echo $result["Fathersname"];?></td>
<td><?php echo $result["mothersname"];?></td>
<td><div align="center"><?php echo $result["Presentaddress"];?></div></td>
<td align="right"><?php echo $result["peraddress"];?></td>
<td align="right"><?php echo $result["bloodgroup"];?></td>
<td align="right"><?php echo $result["email"];?></td>
<td align="right"><?php echo $result["nationalid_passportno"];?></td>
<td align="right"><?php echo $result["gender"];?></td>
<td align="center"><a href="edit.php?applicant_id=<?php echo $result["applicant_id"];?>">Edit</a></td>

1 个答案:

答案 0 :(得分:0)

这不是mysql问题。你只需要增加名字&#39; css中的列宽。这显示了像Nijar Hosssain这样的全名单行。

<td class="name"><div align="center"><?php echo $result["Name"];?></div></td>

在css中你可以写

.name { width:10%; }