如何在JSON编码中使用HTML href链接?

时间:2019-06-16 19:37:00

标签: javascript json jsonencoder

我正在创建活动日历。目前,我的JSON代码已通过PHP脚本插入到索引页面。

如何在JSON代码中向“标题”添加可点击的链接?

我的代码如下。我试图添加HTML href链接。

01)这是索引文件中的代码,其中JSON PHP作为“ jsonencode.php”包含在内。

events: 'jsonencode.php',

02)这个jsonecode.php

$connect = new PDO('mysql:host=localhost;dbname=testing', 'root', '');

$data = array();
$query = "SELECT id,resourceId,start,end,customer,service,mobile FROM book
ORDER BY id";
$statement = $connect->prepare($query);
$statement->execute();
$result = $statement->fetchAll();
foreach($result as $row)    
{
$data[] = array(
'id'   => $row["id"],
'resourceId'   => $row["resourceId"],
'start'   => $row["start"],
'end'   => $row["end"],
'title'   => $row["customer"],
'service'   => $row["service"]
);
}
echo json_encode($data);

03)我想向$row["customer"]添加链接,这样做是希望向客户添加HTML href链接,但仅echo为href。

0 个答案:

没有答案