我不知道这是否正在发生。无论如何,我的问题是
我的网站有日志功能,管理员可以从中查看或访问最终用户访问过的位置。--> 这是简单的 PHP
现在,如果他想导出日志,他可以,但导出的 CSV 没有指向 loations 的链接。
希望你得到。
我正在为您的参考发布代码:
$contents="Sr.No,User_Type,Location\n";
$add = "select * from log_table order by id";
$user_query = mysql_query($add);
while($row = mysql_fetch_array($user_query))
{
$contents.=$row[log_id].",";
$contents.=$row[Type].",";
$contents.="<a href='$row[location]'>".$row[location]."</a>\n";
}
Header("Content-Disposition: attachment; filename=export.csv");
print $contents;
我曾尝试在位置周围放置标签。但它不起作用。
我期待的是
我得到的是
提前谢谢=)