我很难弄清楚如何向代码中添加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();
}