我想从 mysql 数据库中提取 URL。但是,我希望将 URL 链接到表中的单个单词“CLICK”。
下面的代码片段从 mysql 数据库中提取数据并将其作为一系列行放入表中。对于每一行,都有一个相应的 URL,我也希望从数据库中提取该 URL。我不想显示完整而长的 URL,我只想在每一行上加上 CLICK 这个词,然后人们可以单击它来访问该 URL。任何机构都可以告诉我这是怎么做到的吗?
$q="SELECT * FROM railstp WHERE DOWNLOAD='$changeday'";
$r=mysqli_query($mysql_link,$q);
if ($r)
{
echo "<strong>Network Rail Schedule (STP) updates downloaded: $changeday</strong>";
echo "<p> </p>";
echo "<Table id='customers'>
<tr>
<th>Headcode</th>
<th>Traction</th>
<th>From</th>
<th>To</th>
<th>Departing</th>
<th>Destination</th>
<th>Depart</th>
<th>Arrive</th>
<th>ATOC</th>
<th>Runs</th>
<th>Load</th>
<th>Speed</th>
</tr>";
while ($row=mysqli_fetch_array($r,MYSQLI_ASSOC))
{
echo "<tr>";
echo "<td>".$row['HEADCODE']."</td>";
echo "<td>".$row['TRACTION']."</td>";
echo "<td>".$row['STARTDATE']."</td>";
echo "<td>".$row['ENDDATE']."</td>";
echo "<td>".$row['DEPART']."</td>";
echo "<td>".$row['ARRIVE']."</td>";
echo "<td>".$row['DEPARTTIME']."</td>";
echo "<td>".$row['ARRIVALTIME']."</td>";
echo "<td>".$row['ATOC']."</td>";
echo "<td>".$row['RUNS']."</td>";
echo "<td>".$row['LOAD']."</td>";
echo "<td>".$row['SPEED']."</td>";
echo "</tr>";
}
echo "</Table>";
}
else {echo '<p>'.mysqli_error($mysql_link).'</p>' ;}
}
show_records($mysql_link);
mysqli_close($mysql_link);