コード例 #1
0
ファイル: mysql.func.php プロジェクト: Cyc429170296/webName
function _data($_result, $_param)
{
    $_arr = array();
    while (!!($_rows = _fetch_list($_result))) {
        $_arr[] = $_rows[$_param];
    }
    return $_arr;
}
コード例 #2
0
ファイル: article.php プロジェクト: Cyc429170296/webName
function Module()
{
    global $_mid, $_tpl;
    $_module = _fetch_list(_query('select module_tpl,module_det,module_name from tg_module where mid=' . $_mid));
    $_tpl->assign('module_name', $_module['module_name']);
    $_tpl->assign('module_en_name', language($_module['module_name']));
    if ($_module['module_det']) {
        if (isset($_GET['d']) && is_numeric($_GET['d'])) {
            $_tpl->display($_module['module_det']);
            return;
        }
    }
    $_tpl->display($_module['module_tpl']);
}
コード例 #3
0
ファイル: data.php プロジェクト: Cyc429170296/webName
<?php

$_sql = "SELECT * FROM tg_article as a,tg_menu as b where a.recom=1 AND a.pid=b.pid";
$_result = _query($_sql . " AND b.mid=1");
while (!!($_rows = _fetch_list($_result))) {
    $data_1 = mb_substr($_rows['content'], 0, 162, 'utf-8');
}
$_tpl->assign('data_1', $data_1 . '......');
$_result = _query($_sql . " AND b.mid=6");
while (!!($_rows = _fetch_list($_result))) {
    $data_6 .= '<li><a href="download/' . $_rows['img_src'] . '">' . $_rows['title'] . '</a></li>';
}
$_tpl->assign('data_6', $data_6);
$_result = _query($_sql . " AND b.mid=2");
while (!!($_rows = _fetch_list($_result))) {
    $data_2 .= '<li><a href="article.php?m=' . $_rows['mid'] . '&p=' . $_rows['pid'] . '&d=' . $_rows['id'] . '" class="pic"><img alt="' . $_rows['title'] . '" src="upload/' . $_rows['img_src'] . '" /></a><div class="title"><a href="article.php?m=' . $_rows['mid'] . '&p=' . $_rows['pid'] . '&d=' . $_rows['id'] . '">' . $_rows['title'] . '</a></div></li>';
}
$_tpl->assign('data_2', $data_2);