コード例 #1
0
ファイル: city.inc.php プロジェクト: hcd2008/destoon
defined('IN_DESTOON') or exit('Access Denied');
$menus = array(array('分站添加', '?file=' . $file . '&action=edit'), array('分站管理', '?file=' . $file), array('批量索引', '?file=' . $file . '&action=letter'));
$AREA = cache_read('area.php');
$areaid = isset($areaid) ? intval($areaid) : 0;
$do = new city($areaid);
switch ($action) {
    case 'edit':
        if ($submit) {
            if (!$post['areaid']) {
                msg('请选择所在地区');
            }
            if (!$post['name']) {
                msg('分站名不能为空');
            }
            $city['cityname'] = trim($city['cityname']);
            $do->edit($post);
            dmsg('更新成功', $forward);
        } else {
            if ($areaid) {
                @extract($do->get_one());
            } else {
                $areaid = $listorder = 0;
                $name = $style = $letter = $domain = $iparea = $template = $seo_title = $seo_keywords = $seo_description = '';
            }
            include tpl('city_edit');
        }
        break;
    case 'letter':
        $result = $db->query("SELECT * FROM {$DT_PRE}city WHERE letter=''");
        while ($r = $db->fetch_array($result)) {
            $letter = $do->letter($r['name']);
コード例 #2
0
ファイル: edit_city.php プロジェクト: seans888/Bgy-Project
    require 'subclasses/city.php';
    $dbh_city = new city();
    $object_name = 'dbh_city';
    require 'components/create_form_data.php';
    extract($arr_form_data);
    if ($_POST['btn_cancel']) {
        log_action('Pressed cancel button');
        redirect("listview_city.php?{$query_string}");
    }
    if ($_POST['btn_submit']) {
        log_action('Pressed submit button');
        $message .= $dbh_city->sanitize($arr_form_data)->lst_error;
        extract($arr_form_data);
        if ($dbh_city->check_uniqueness_for_editing($arr_form_data)->is_unique) {
            //Good, no duplicate in database
        } else {
            $message = "Record already exists with the same primary identifiers!";
        }
        if ($message == "") {
            $dbh_city->edit($arr_form_data);
            redirect("listview_city.php?{$query_string}");
        }
    }
}
require 'subclasses/city_html.php';
$html = new city_html();
$html->draw_header('Edit City', $message, $message_type);
$html->draw_listview_referrer_info($filter_field_used, $filter_used, $page_from, $filter_sort_asc, $filter_sort_desc);
$html->draw_hidden('city_id');
$html->draw_controls('edit');
$html->draw_footer();
コード例 #3
0
ファイル: edit.php プロジェクト: akandshuvo/htdocs_basis_seip
 <center>

<table style="width:1%">
  <tr>
  		
 
  </tr>
   <tr>
    <td>001</td>
    <td>:</td>
     <td>Masum</td>
      <td>:</td>
    <td>Dhaka</td>		
  
 	

  </tr>
  </center>

<?php 
function __autoload($className)
{
    $fullPath = $className . ".php";
    $finalDis = "/../../../" . str_replace("\\", "/", $fullPath);
    //echo $finalDis;
    include_once $finalDis;
}
use src\Bitm\SEIP117637\city\City;
$city = new city();
$city->edit();
echo "<hr>";