首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

获取mysql图片途径显示到网页

2012-09-17 
获取mysql图片路径显示到网页数据库里面 picture 是varchar类型 id.1的值是 c:\mypic\yyh.jpgecho td wi

获取mysql图片路径显示到网页
数据库里面 picture 是varchar类型 id.1的值是 c:\mypic\yyh.jpg

echo "<td width='10%'><img src=$title[picture] alt=\"images\"/></td>";这一段不会写 :

全部代码如下 :

<?php
$titlesql="select id,name,born,gender,identity_card,picture from myfamily;";
?>

<table width="100%" border="1" cellspacing="0" cellpadding="0">
  <tr> 
  <th width="13%">id</th>
  <th width="10%">name</th>
  <th width="7%">born</th>
  <th width="6%">gender</th>
  <th width="8%">identity_card</th>
  <th width="8%">picture</th>
  </tr>
  
<?php
while($title=mysql_fetch_array($titleresult)){
echo "<tr> ";
  echo "<td width='13%' align=center>$title[id]</td>";
  echo "<td width='10%' align=center>$title[name]</td>";
  echo "<td width='7%'>$title[born]</td>";
  echo "<td width='6%'>$title[gender]</td>";
  echo "<td width='8%'>$title[identity_card]</td>";  
  echo "<td width='10%'><img src=$title[picture] alt=\"images\"/></td>"; 
  echo "</tr>";
}
echo "</table>";
?>

[解决办法]
少了引号
echo "<td width='10%'><img src='".$title[picture]."'></td>";

热点排行