Example #1
0
<?php

if (!$_GET['ID']) {
    error('文章编号不能为空!');
}
if (!is_numeric($_GET['ID'])) {
    error('文章编号只能是数字!');
}
$sql = 'SELECT * ';
$sql .= 'FROM ' . TB_DATA . ' ';
$sql .= 'WHERE id = ' . $_GET['ID'];
$db = new MySQL(DB_SERVER, DB_USER, DB_PASSWORD, DB_DATABASE);
$rs = $db->query($sql);
$rs->next_record();
$db->disconnect();
$shortURL = $rs->get('url');
$fullURL = $shortURL;
if (80 < strlen($shortURL)) {
    $shortURL = c_substr($shortURL, 0, 80) . '...';
}
$tp->set_templatefile('templates/import_view.html');
$tp->assign('title', $rs->get('title'));
$tp->assign('date', date('Y-m-d H:i:s', $rs->get('date')));
$tp->assign('body', $rs->get('body'));
$tp->assign('author', $rs->get('author'));
$tp->assign('from', $rs->get('data_from'));
$tp->assign('intro', $rs->get('intro'));
$tp->assign('url', $shortURL);
$tp->assign('fullURL', $fullURL);
$moduleTemplate = $tp->result();
$moduleTitle = '浏览入库数据';
Example #2
0
 $report['none']['title'] = 0;
 $report['have']['title'] = 0;
 $report['none']['link'] = 0;
 $report['have']['link'] = 0;
 if (!empty($linksList['link'])) {
     foreach ($linksList['link'] as $k => $v) {
         if (in_array(getextension($v), $configIgnoreExt)) {
             continue;
         } else {
             $title = deletehtml($linksList['title'][$k]);
             if (60 < strlen($title)) {
                 $title = m_substr($title, 0, 60) . chr(0) . '...';
             }
             $list['list'][$i]['title'] = $title;
             if (60 < strlen($v)) {
                 $list['list'][$i]['link'] = c_substr($v, 0, 60) . '...';
             } else {
                 $list['list'][$i]['link'] = str_replace('&amp;', '&', $v);
             }
             $list['list'][$i]['fulllink'] = $v;
             $list['list'][$i]['getLink'] = rawurlencode(str_replace('&amp;', '&', $v));
             $list['list'][$i]['rules'] = $_GET['ID'];
             ++$i;
             if ($linksList['title'][$k] == '') {
                 ++$report['none']['title'];
             } else {
                 ++$report['have']['title'];
             }
             if ($v == '') {
                 ++$report['none']['link'];
                 continue;