如何添加超链接或链接到我的数据库

时间:2019-03-13 04:15:48

标签: php mysql

我很难弄清楚如何向代码中添加hyperlink,如何在此行中添加到数据库的链接-> label_cell(number_format2($ d,0),“ nowrap align = right“); <---如何将链接放置到我的数据库,以便其可点击link

for ($i = 0, $date_ = $_POST['begin']; date1_greater_date2($_POST['end'], $date_); $i++)
{
    start_row();

    $sql = get_budget(get_post('from_date'),get_post('to_date'),get_post('account'));

    label_cell($date_);
    $d = get_budget($date_, $date_, $_POST['account']);
        label_cell(number_format2($d, 0), "nowrap align=right");
        $btotal += $d;


    if ($show)
    {
        $d = get_budget($date_, $date_, $_POST['account']);
        label_cell(number_format2($d, 0), "nowrap align=right");

        $btotal += $d;
    }
    $lamount = get_years(add_years($date_, -1), add_years(end_month($date_), -1), $_POST['account']);
    $total += input_num('amount'.$i);
    $ltotal += $lamount;
    label_cell(number_format2($lamount, 0), "nowrap align=right");
    $date_ = add_months($date_, 1);
    end_row();
}

0 个答案:

没有答案