在sql查询的结果周围包装一个href并使其可点击?

时间:2013-03-15 19:49:00

标签: php html sql

在report_path字段中,我正在尝试使图像路径可单击并将用户传递给图像。

$query = ("select 
        a.id as id,
        a.result, 
        a.result_date, 
        a.created_at, 
        b.employee as 'Created By',
        case
            when a.in_range='1' then 'IN' else 'OUT'
        end as in_range, 
        case when a.fax='1' then 'YES' else 'NO' end + ' | ' +
        case when a.email= '1' then 'YES' else 'NO' end as 'Pending<br>Fax | Email',
        report_path as '<a href='' + url + ''>report_path</a>',
        result
    from " . table('inrult') . " a
    left outer join " . table('emp') . " b on a.created_by=b.id
    where a.patient_id={$patient->hex} and (a.inactive is null or a.inactive=0) order by result_date desc");

这并不像我想象的那样完全正常。我做错了什么?

inspect元素显示表格行事件链接,而不是字段事件链接。

<td onclick="go2(&quot;index.php?ae/nic/edit&amp;_id=ACS00&amp;id=5&quot;);">_INR\5_2013-03-15.pdf</td>

所以当我点击该行的任何地方时,它会转到上面的链接,但我无法为表格中的特定字段指定不同的链接...我希望这更有意义。

0 个答案:

没有答案