0

我正在尝试在 php 文档中显示链接。数据存储在mysql中。我已将 url 存储在字段 course_url 中。

我可以让页面以纯文本形式显示超链接,但希望它显示带有“单击此处”锚文本的超链接。到目前为止我得到的编码是:

 <?php
$con=mysqli_connect("localhost","root","","mentertraining");
// Check connection
if (mysqli_connect_errno())
  {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  }


$query = "SELECT `coursedates`.`coursedate_id`,`coursedates`.`course_id`,`coursedates`.`date1`,`courses`.`course_title`,`courses`.`course_url`,`courses`.`no_of_days` FROM coursedates\n"
    . "LEFT JOIN `mentertraining`.`courses` ON `coursedates`.`course_id` = `courses`.`course_id` LIMIT 0, 30 ";

$result = mysqli_query($con,$query);
    echo "<table border='1'><tr><th>Course Title</th><th>Course Date</th><th>No of Days</th><th>Course URL</th></tr>";

while($row    = mysqli_fetch_assoc($result))
  {
  $date = new DateTime($row['date1']);
    $row['date1'] = $date->format('d/m/Y');

  echo "<tr>";
  echo "<td>" . $row['course_title'] . "</td>";
   echo "<td>" . $row['date1'] . "</td>";
    echo "<td>" . $row['no_of_days'] . "</td>";
  echo "<td>""<a href=" . $row['course_url'] .  >"'Click Her'"</a>""</td>";
  echo "</tr>";
  }
echo "</table>";

mysqli_close($con);
?> 
4

2 回答 2

1

您的回声在此行格式错误:

echo "<td>""<a href=" . $row['course_url'] .  >"'Click Her'"</a>""</td>";

它应该是:

echo "<td><a href='" . $row['course_url'] .  "'>Click Here</a></td>";
于 2013-07-01T21:03:14.067 回答
0

你使用了错误的"'引文

while($row    = mysqli_fetch_assoc($result))
  {
  $date = new DateTime($row['date1']);
    $row['date1'] = $date->format('d/m/Y');

  echo "<tr>";
  echo "<td>" . $row['course_title'] . "</td>";
   echo "<td>" . $row['date1'] . "</td>";
    echo "<td>" . $row['no_of_days'] . "</td>";
  echo "<td><a href='" . $row['course_url'] ."'>Click Her</a></td>";
  echo "</tr>";
  }
于 2013-07-01T21:06:43.850 回答