Php搜索 - 从标题链接到网站

时间:2017-02-21 02:06:39

标签: php search

我在一个名为title和description的mysql数据库中有2个字段。标题是文章名称,描述是网站的链接。我目前在搜索结果中出现了标题,但是当我点击标题时,我希望它能够通过href将我带到相关的描述/网站链接。

我非常确定我还需要在这行代码中添加说明:

$query=mysql_query("select * from posts where title LIKE '%{$key}%'");

我该怎么做?

该网站为http://vince.netau.net

<?php
    $key=$_GET['key'];
    $array = array();
    $con=mysql_connect","******_******","******");
    $db=mysql_select_db("a8814009_test",$con);
    $query=mysql_query("select * from posts where title LIKE '%{$key}%'");
    while($row=mysql_fetch_assoc($query))
    {
      $array[] = $row['title'];
    }
    echo json_encode($array);
?>

1 个答案:

答案 0 :(得分:-1)

如果我可以提出您的问题,您希望将用户重定向到“描述”栏中保存的内容吗?在你的while循环中包含这个HTML href,<a href='".$row['description']".">The link text here </a>