gpt4 book ai didi

php - 制作存储在表列中的值的超链接

转载 作者:太空宇宙 更新时间:2023-11-03 12:17:00 25 4
gpt4 key购买 nike

如何使插入到 table column($row['survey_name']) 中的值成为超链接。这是我在 php 中尝试过的代码:

while($row=mysql_fetch_array($result1))
{
$content .= "
<tr id=\"special\" style=\"background:;\">
<td>". $row['survey_name'] . "</td>
<td>" . $row['date'] . "</td>
</tr>
";
?>
<script
$('#special').onclick(function(){window="http://urllinkto.com/x/y/z";})
</script>
<?php }//end of while
if ($content) {

// See note on the "quote switch" here
echo '
<table border= "5" cellpadding="2" cellspacing="2" width="100%">
<tr>
<td><strong>Survey Name</strong></td>
<td><strong>Date Created</strong></td>
/tr>' .
$content . '
</table> ';

最佳答案

改变

 <td>". $row['survey_name'] . "</td> 

到:

<td><a href='URL HERE'>". $row['survey_name'] . "</a></td> 

关于php - 制作存储在表列中的值的超链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21700304/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com