在我键入
时的PHP代码中 while($row = mysql_fetch_array($result, MYSQL_NUM ))
{
echo "<table border=1 ; cellpadding:5px; style='border-collapse: collapse; border: 1px #ccc; width: 100%; height:200px'>";
{
echo "<tr>
<td width= 35%> " All Values' </td>
<td width= 65%> '.$row[1].' </td>
</tr>';
}
echo "</table>";
}
mysql_free_result($result);
显示
151,152,154,155
那些与单行连续的数字,&#34; 151,152,154,155&#34;从表中调用验证和表字段是ID。验证表中还有另一个字段,名为text,对应于数字。
表格示例
**MySQL Table: validation**
ID text
--------------
151 correct
152 plugin
153 often
154 type
155 apple
例如ID = 151行有文字,&#34;正确&#34;和ID = 152行有文字,&#34;插件&#34;等等...
我想要这样显示......
correct, plugin, type, apple
而不是数字。
请建议我如何用代码替换数字。
我尝试添加
'.$row[1].'
到数组并使用for循环获取但无法获得成功。