如何制作echo PHP链接

时间:2014-12-05 17:12:30

标签: php

我有一个叫做反馈的表,表格看起来像这样;

UserName      image
  abc       image/x.jpeg
  def       image/y.png

我想使用echo在php中建立一个链接。

我尝试的编码是,

<?php
    require_once('Connections/localhost.php');
    mysql_connect("localhost","root","");
    mysql_select_db("iis");
    $result= mysql_query("SELECT * FROM feedback") or die (mysql_error());
    while ($row = mysql_fetch_assoc($result)) {
 echo '<a href="'.$row['image'].'">'.$row['UserName'].'</a><br />';

  }


    ?>

我希望结果如下所示,

abc = image/x.jpeg
def = image/y.png

这样当您点击链接时,它将指向文件夹图像并显示每个人存储的图像。

1 个答案:

答案 0 :(得分:0)

建议你这样做。

echo '<table>';
while ($row = mysql_fetch_assoc($result)) {
    echo '<tr><td><a href="'.$row['image'].'">'.$row['UserName'].'</a> </td><td>=</td><td>'.$row['image'].'</td></tr>';
}
echo '</table>';