2013年12月18日 星期三

ugm_contact_us 20131218

【關於 ugm_contact_us 聯絡我們 2.0】

 1.後台界面全面重寫,套入BootStrap界面
 2.增加「聯絡單位」
 3.改變mail通知方式(使用xoops內建的xoopsMailer物件)、
 4.加入xoops 「Token」安全機制及使用xoops內建圖型驗證、



【關於 ugm_contact_us 聯絡我們

這是一個小型的模組,主要用來與訪客聯絡事誼。
它是小弟我的第一個開發的模組,架構是用tad老師的「XOOPS 模組製造機」所產生。
它也可以用來當做小型的購物車,
範例網站:新享城鵝肉店

【更新資訊】

ugm_contact_us 2.0 版更新項目(2013-12-18 釋出)
  1. 增加「聯絡單位」,可以設定多個管理員,每一個聯絡單位,可以設定多個收信信箱
  2. 寄信工具使用使用xoops內建的xoopsMailer物件,只要xoops可以寄信,本模組亦可。
  3. 全面導入BoootStrap

【下載檔案】

ugm_contact_us 2.0模組 2.0 正式版(2013-12-18)(需搭配 Tad Tools 1.18 以上版本)

【環境需求】

  1. XOOPS 2.0.x~2.5.x 都可安裝
  2. PHP 5 以上
  3. 需要 Tad Tools 工具包

【安裝方法】

  1. 將新模組解壓,把ugm_contact_us 目錄上傳到modules下。
  2. 需搭配 Tad Tools工具包詳細安裝方法請按此連結
  3. 進入後台「模組→系統」進行模組安裝。

【更新方法】

  1. 更新時,請先登入,並進到「模組管理」畫面,以便上傳完後,可以立即進行更新動作。
  2. 將新模組解壓,把ugm_contact_us 目錄上傳到modules下,直接覆蓋即可(把舊的ugm_contact_us 整個刪除,上傳新的,這樣更好)。
  3. 若沒有 Tad Tools工具包 或版本太舊,則需下載安裝 Tad Tools工具包詳細安裝方法請按此連結
  4. 進入後台「模組→系統」進行模組更新。

2013年11月15日 星期五

chainedSelects 連動選單

參考網站
參考網站

連動選單

script

//---引入Js

//-----------------------------------------------------------
  
  

OP


  //連動選單
  case "get_ugm_search_class_json":
  $get_ugm_search_class_json[] = get_ugm_search_class_json($_GET['_value']);
  echo json_encode($get_ugm_search_class_json);
  exit;
  # ------------------------------------------------------------------------

  //選項
  function get_ugm_search_class_json($kind_sn="0"){
    global $xoopsDB;
    $sql = "select * from ".$xoopsDB->prefix("ugm_search_class")." where `kind_sn`='{$kind_sn}' order by `sn`";
    $result = $xoopsDB->query($sql) or redirect_header($_SERVER['PHP_SELF'],3, mysql_error());
    //$opt[]="請選擇";
    while(list($sn,$kind_sn,$title)=$xoopsDB->fetchRow($result)){
      $opt[$sn]=$title;
    }
     return $opt;    
  }

html

 $main=" 

 
    "._MA_UGMSEARCH_KIND_SN."
   
      
    
  

 
 
    "._MA_UGMSEARCH_CLASS_SN."
   
      
    
  "

2013年11月3日 星期日

PHP EXCEL 匯出

設定寬度

# 設定 A 欄 寬度(一次只能一個欄)
$objPHPExcel->getActiveSheet()->getColumnDimensionByColumn(0)->setWidth(20);
$objPHPExcel->getActiveSheet()->getColumnDimension("A")->setWidth(20);

2013年11月1日 星期五

MYSQL 排名

參考來源:http://www.1keydata.com/tw/sql/sql-rank.html



SELECT a1.Name, a1.Sales, COUNT(a2.Sales) Sales_Rank 
FROM Total_Sales a1, Total_Sales a2 
WHERE a1.Sales < a2.Sales OR (a1.Sales=a2.Sales AND a1.Name = a2.Name) 
GROUP BY a1.Name, a1.Sales 
ORDER BY a1.Sales DESC, a1.Name DESC;


  # ------------------------------------------- 
 $sql="
 select a.term_class_student_sn, a.avg1, count(b.avg1) rank 
 from 
   (select sn as term_class_student_sn ,avg1
    from ".$xoopsDB->prefix("ugm_scroeqry_term_class_student")."  
    where term_class_sn='{$term_class_sn}' and enable='1') a, 
   
   (select sn as term_class_student_sn ,avg1
   from ".$xoopsDB->prefix("ugm_scroeqry_term_class_student")."  
   where term_class_sn='{$term_class_sn}' and enable='1') b 
   
   where a.avg1 < b.avg1 or (a.avg1=b.avg1 and a.term_class_student_sn = b.term_class_student_sn) 
   group by a.term_class_student_sn, a.avg1 
   order by a.avg1 desc, a.term_class_student_sn desc;
 ";die($sql);
  # ----http://www.1keydata.com/tw/sql/sql-rank.html     

2013年10月30日 星期三

編輯器_插入圖片

1.在新增文章/編輯文章,選擇「影像」工具鈕


2.如圖 



3.如圖  


4.可拖曳上傳數個圖檔,請先將檔名更換為英文檔名  


5.挑選圖片


6.如圖 



7.編輯圖片:對圖片按右鍵



8.可調整寬度、高度、邊框,靠右 ....



2013年10月19日 星期六

更新資料結構 (模組更新)

市場攤販管理,更改資料表結構
function xoops_module_update_ugm_market(&$module, $old_version) {
    GLOBAL $xoopsDB;
    if(!chk_ugm1()) go_ugm1();   # ---- 更改結構為 `e_last` -> DECIMAL( 10, 2 )
    if(!chk_ugm2()) go_ugm2();   # ---- 更改結構為 `e_now` -> DECIMAL( 10, 2 )
    return true;
}

# -------------------- ugm --------------------------------------------------*/

# ---- 更改結構 ugm_market_utility_main  `e_last`  120->130----
function chk_ugm1(){
 global $xoopsDB;
  $sql="select `e_last` from ".$xoopsDB->prefix("ugm_market_utility_main")."";
  $result = $xoopsDB->query($sql) or redirect_header($_SERVER['PHP_SELF'],3, mysql_error());
  if(mysql_field_type($result,0)=='int')return false ;
  return true;
}
function go_ugm1(){
 global $xoopsDB;
 $sql="ALTER TABLE ".$xoopsDB->prefix("ugm_market_utility_main")." CHANGE `e_last` `e_last` DECIMAL( 10, 2 ) UNSIGNED NOT NULL COMMENT '上期用電度數'";
 $xoopsDB->queryF($sql) or redirect_header($_SERVER['PHP_SELF'],3, mysql_error());
 return true;
}
# -----------------------------------------
# ---- 更改結構 ugm_market_utility_main  `e_now`  120->130-----
function chk_ugm2(){
 global $xoopsDB;
  $sql="select `e_now` from ".$xoopsDB->prefix("ugm_market_utility_main")."";
  $result = $xoopsDB->query($sql) or redirect_header($_SERVER['PHP_SELF'],3, mysql_error());
  if(mysql_field_type($result,0)=='int')return false ;
  return true;
}
function go_ugm2(){
 global $xoopsDB;
 $sql="ALTER TABLE ".$xoopsDB->prefix("ugm_market_utility_main")." CHANGE `e_now` `e_now` DECIMAL( 10, 2 ) UNSIGNED NOT NULL COMMENT '本期用電度數'";
 $xoopsDB->queryF($sql) or redirect_header($_SERVER['PHP_SELF'],3, mysql_error());
 return true;
}
# -----------------------------------------

2013年9月25日 星期三

燈箱

# ---- 在 加上
rel='lyteframe[booth]' title='{$number}' rev='width: 600px; height: 600px; scrolling: yes;'

# ---- 在 head 加上
 //--------------------- 引入jquery -------------------------------------
  if(!file_exists(XOOPS_ROOT_PATH."/modules/tadtools/jquery.php")){
    redirect_header("index.php",3, _TAD_NEED_TADTOOLS);
  }
  include_once XOOPS_ROOT_PATH."/modules/tadtools/jquery.php";
  $jquery_path = get_jquery(); //一般只要此行即可
  # --------  燈箱----------------------------------------
  $lytebox="
  
  ";
# --------------------------------------------------------


# ---- 在switch 加上  --------------------------------------------


  //瀏覽單筆資料->燈箱 圖片
  case "ugm_market_booth_view":
    echo show_lytebox_html(show_one_ugm_market_booth($sn),""); #秀單筆的程式碼
    exit;
    
# ---------------------------------------------------------------

# ---- 在block_function ----------------------------------------

################################################################################
#   燈箱打包碼(內容,標題)
#
#
#
################################################################################
if(!function_exists("show_lytebox_html")){
function show_lytebox_html($content,$title){
  global $xoopsModule;
  # ---- 取得模組目錄名稱 ---------------
  $MDIR=$xoopsModule->getVar('dirname');
  # -------------------------------------
  $main="
       
       
         

         
         {$title}
         
         
         

{$title}

{$content} "; return $main; } }

取得XOOPS內建表單語法

取得XOOPS內建表單語法
群組多選選單
# ---- 引入XOOPS 內建表單物件 ------------------------------- 
include_once(XOOPS_ROOT_PATH."/class/xoopsformloader.php");
# ---- 預設值 -----------------------------------------------
$group=$xoopsModuleConfig['query_admin'];
# ---- XoopsFormSelectGroup('標題', 'name', 含訪客, '預設值', 高度 ,多選)
$form=new XoopsFormSelectGroup ("", "group", false, $group, 3, true);
# ---- 輸出HTML碼 ------------------------------------------ 
$main_form = $form->render();

# ----- 輸出驗證碼-----------------------------------------------------
$configs="";
$Captcha=new XoopsFormCaptcha ("請輸入驗證碼", 'xoopscaptcha', false, $configs);
# ---- 輸出HTML碼 ------------------------------------------
$form_Captcha = $Captcha->render();

 

2013年8月31日 星期六

bootstrap accordion-menu

bootstrap accordion-menu  架構


參考網站:http://kkbruce.tw/Bootstrap/JavaScript#collapse
<div class="accordion" id="menu_block_1">
 <div class="accordion-group">
  <div class="accordion-heading">
    <a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#menu_block_1" href="#menu_sn_1">伸縮選單1</a>
  </div>
  <div id="menu_sn_1" class="accordion-body in collapse">
   <div class="accordion-inner">
            <ul>
                <li>第一層21</li>
                <li>第一層22</li>
                <li>第一層2</li>
            </ul>
   </div>
  </div>
 </div>
 <div class="accordion-group">
  <div class="accordion-heading">
    <a class="accordion-toggle" data-toggle="collapse" data-parent="#menu_block_1" href="#menu_sn_2">伸縮選單2</a>
  </div>
  <div id="menu_sn_2" class="accordion-body in collapse">
   <div class="accordion-inner">
            <ul>
                <li>第一層21</li>
                <li>第一層22</li>
                <li>第一層2</li>
            </ul>
   </div>
  </div>
 </div>
</div>

2013年8月15日 星期四

AJAX JQUERY

範例網址:http://www.tad0616.net/modules/tad_book3/page.php?tbdsn=746

ajax_utility.php
<?php
include_once "header.php";
$market_sn=$_REQUEST['market_sn'];
echo get_market_fill($market_sn);
?>
這裡直返回「填發人員」
js
  <script>
    //開啟表單時
    $(document).ready(function(){
   //由市場決定填發人員
   $.post('ajax_utility.php' , {market_sn:$('#market_sn').val()}, 
        function(data){
          $('#fill').val(data); 
      });
      //市場改變,填發人員改變
      $('#market_sn').change(function(){
        $.post('ajax_utility.php' , {market_sn: $('#market_sn').val()}, 
            function(data){
              $('#fill').val(data); //排序             
         });    
      });
      //自動抓取年度
      $('#limit_year').val($('#year').val()); //年度 
      $('#year').change(function(){
        $('#limit_year').val($('#year').val()); //年度       
      });
      //自動抓取月份
      $('#limit_month').val($('#month').val()); //月份 
      $('#month').change(function(){
        $('#limit_month').val($('#month').val()); //月份       
      });
    });
  </script>
取得值:
$('#market_sn').val()
寫入值:
$('#fill').val(data);

 jQuery的.val ()方法

  1. $('#menu1').val()可以取得id="menu1"的網頁元件的值。
  2. $('#menu1').val('xxx')可以設定id="menu1"的網頁元件的值。

html

<select name='market_sn' size=1 id='market_sn'>{$market_select_option}</select>

<input type='text' name='fill' size='5' value='' id='fill' >

2013年8月5日 星期一

保留修改報名表單的網址

1.報名完成後,按「修改回覆內容」

2.請將「網址」,反白->複製->保存。若有需要修改時,則把網址貼至「網址列」即可修改


2013年8月3日 星期六

模組開發物件

按鈕
$add_button="<a href='{$_SERVER['PHP_SELF']}?op=ugm_market_hire_form'  class='Button'><span>按鈕</span></a>";
固定表格
<table border='0' cellspacing='3' cellpadding='3' id='ugm_tb' style='word-wrap:break-word; word-break:break-all;table-layout:fixed;'>
 表單
<td><input type='text' name='hier[{$sn}][userfees]'  value='{$userfees}' id='userfees_{$sn}' class='validate[required,custom[integer]]' style='width:60px'></td>

<td><input type='text' name='hier[{$sn}][cleaningfees]'  value='{$cleaningfees}' id='cleaningfees_{$sn}' class='validate[required,custom[integer]]' style='width:60px'></td>

<td><input type='text' name='hier[{$sn}][delayfees]'  value='{$delayfees}' id='delayfees_{$sn}' class='validate[custom[integer]]' style='width:60px'></td>

<td><input type='text' name='hier[{$sn}][ps]'  value='{$ps}' id='ps_{$sn}'  style='width:140px'></td>
接收
foreach ($_REQUEST['hier']  as $sn => $data){
    foreach ($data  as $k => $v){
      //以下會產生這些變數:  $userfees, $cleaningfees,$delayfees,$ps
      $$k=$v;
    }
    echo $sn."<br>";
    echo $userfees."<br>";
    echo $cleaningfees."<br>";
    echo $delayfees."<br>";
    echo $ps."<br>";
    die();
 }

2.

$last_button="上一步";

2013年7月25日 星期四

「UGM_自訂頁面」模組更新(2.0)

  1. 這一版的更新主要是將模組改為XOOPS 2.5.5的模組架構
    示範網站:http://www.taytzang.com.tw/web/
    請先上傳覆蓋模組,並執行模組更新:

  2. 檔案下載位置:
  3. 育將電腦工作室:XOOPS 模組開發及修改
    聯絡:tawan158@gmail.com ugm

2013年7月22日 星期一

「UGM_自訂頁面」模組更新(1.8)增加英文語系


  1. 這次更新主要是增加英文語系。
     示範網站:http://www.taytzang.com.tw/web
    請先上傳覆蓋模組,並執行模組更新:


2.檔案下載位置:



3.育將電腦工作室:XOOPS 模組開發及修改
   聯絡:tawan158@gmail.com     ugm

2013年7月8日 星期一

「UGM_自訂頁面」模組更新(1.8)增加佈景引入「下拉選單」、「圖片輪撥」功能



這次更新主要是增加增加佈景引入「下拉選單」、「圖片輪撥」功能。

示範網站:http://www.dawandrive.com.tw/index.php


1.請先上傳覆蓋模組,並執行模組更新,然後至偏好設定,設定「圖片輪撥」、「下拉選單」佈景的設定

2.請在佈景檔,適當位置加入下方語法


    <div >
    <{includeq file="$xoops_rootpath/modules/ugm_page/templates/ugm_page_block_slider.html"}>      <!-- 引入ugm_page 自訂頁面第一個圖片輪撥 -->   
    </div>
<div>            
    <{includeq file="$xoops_rootpath/modules/ugm_page/templates/ugm_page_block_menu.html"}><!-- 引入ugm_page 自訂頁面第一個下拉選單 -->
    <div class="clear"></div>
</div> 
3.請建立下拉選單及圖片輪撥的資料

4.檔案下載位置:


2013年5月25日 星期六

XOOPS的時間函數運用(new)

本範例為「日期示範」

FORM_預設值:
 

//設定「start_date」欄位預設值
  $start_date=(!isset($DBV['start_date']))?"":date("Y-m-d",xoops_getUserTimestamp($DBV['start_date']));

//設定「end_date」欄位預設值
  $end_date=(!isset($DBV['end_date']))?"":date("Y-m-d",xoops_getUserTimestamp($DBV['end_date']));

 

INSERT_寫入資料庫:


  # -------- 處理時間(日期格式->時間戳記) --------------------------------------
  $_POST['start_date']=userTimeToServerTime(strtotime($_POST['start_date']));
  $_POST['end_date']=userTimeToServerTime(strtotime($_POST['end_date']));
  # -------------------------------------------------------------------------

 

LIST_從資料庫撈出:

# -------- 處理時間(時間戳記->日期格式) -------------------------------------
  $start_date=date("Y-m-d",xoops_getUserTimestamp($start_date));
  $end_date=date("Y-m-d",xoops_getUserTimestamp($end_date));
# ---------------------------------------------------------------------------

 

2013年5月19日 星期日

收合插件

  • 將「ddaccordion」資料夾放入 「class」
  • ddaccordion() 函數放入「block_function.php」
#--------------------- 引入jquery -------------------------------------
if(!file_exists(XOOPS_ROOT_PATH."/modules/tadtools/jquery.php")){
  redirect_header("index.php",3, _TAD_NEED_TADTOOLS);
}
include_once XOOPS_ROOT_PATH."/modules/tadtools/jquery.php";
$jquery_path = get_jquery(); //一般只要此行即可
#-------- jquery 收合 --------------------------------
$ddaccordion=ddaccordion();

# 收合內容
$main_body="
    <!-- 有標題、內容 -->
    <a class='menuitem submenuheader' href='#' >物品類別2</a>
    <div class='submenu'>
     <table border='0' cellspacing='3' cellpadding='3' id='ugm_tb' style='word-wrap:break-word; word-break:break-all'>
        <tr class='alt'><td>1111</td></tr>
        <tr class='alt'><td>1111</td></tr>
        <tr class='alt'><td>1111</td></tr>
        <tr class='alt'><td>1111</td></tr>
      </table>
    </div>
    <!-- 有標題、內容 -->
    <a class='menuitem submenuheader' href='#' >物品類別2</a>
    <div class='submenu'>
     <table border='0' cellspacing='3' cellpadding='3' id='ugm_tb' style='word-wrap:break-word; word-break:break-all'>
        <tr class='alt'><td>1111</td></tr>
        <tr class='alt'><td>1111</td></tr>
        <tr class='alt'><td>1111</td></tr>
        <tr class='alt'><td>1111</td></tr>
      </table>
    </div>
    <!-- 有標題、內容 -->
    <a class='menuitem ' href='#' >物品類別2</a>
    
";
$main=$jquery_path.ugm_javascript(1).$ddaccordion."
  <form action='{$_SERVER['PHP_SELF']}' method='post' id='myForm' enctype='multipart/form-data'>
    <div class='glossymenu'>
      {$main_body}
    </div>
  </form>";
$main=ugm_div("管理主頁",$main,"","width:500px");

2013年5月1日 星期三

dropbox

申請帳號:http://db.tt/z5mauB9b


把dropbox當「圖床」或放js、html,然後連結blog

只要把檔案放在dropbox的「Public」資料夾,

然後執行「copy public link」取得網址即完成。

例如:

http://www.shanmei.info/ 這個網站的slide

是放在:

https://dl.dropbox.com/u/61459273/www/shanmei/slide/index.html

很簡單吧~~~

2013年4月28日 星期日

連動選單



html


  $select_uint_form="
     單位:";

  $select_user_form="
     使用者:";


javascript



  



ajax.php


include_once "header.php";
$op=(empty($_REQUEST['op']))?"main":$_REQUEST['op'];
$unit=intval($_REQUEST['unit']);

switch($op){
  //
 case "get_user":
    echo get_user_form_unit($unit);
    //echo json_encode(array("prod_sort"=>$main['prod_sort'],"total"=>$main['total']));
 break;
  
  //預設動作
  default:
  $main="";
  break;
}
#################################################################################
# 以單位取得使用者的選單
#
#
#
#
#
################################################################################
function get_user_form_unit($unit_sn){
  global $xoopsDB;
  $sql="select a.* ,b.`name`,b.`uname` from  ".$xoopsDB->prefix("ugm_apply_users")." as a left join ".$xoopsDB->prefix("users")." as b on a.`uid`=b.`uid` where a.`unit_sn`='{$unit_sn}' ";
  $result = $xoopsDB->query($sql) or redirect_header($_SERVER['PHP_SELF'],3, mysql_error());
  $main="";
  while($all=$xoopsDB->fetchArray($result)){
   foreach($all as $k=>$v){
     $$k=$v;
   }
   $uid_name=$name?$name:$uname;
   $main.="";
  }
  return $main;
}


2013年4月27日 星期六

涷結窗格

  $main=$jquery_path.ugm_javascript(1)."
  <link href='class/ScrollTable/superTables.css' rel='Stylesheet' type='text/css' />
  <script type='text/javascript' src='class/ScrollTable/superTables.js'></script>
  <style>
  .fakeContainer {
      margin: 20px;
      padding: 0px;
      border: none;
      width: 95%;
      height: 300px;
      overflow: hidden;
  }
  </style> 
  <div class='fakeContainer'>
  <table id='ugm_tb' border='0' cellspacing='3' cellpadding='3'>
    <tr><th>標題</th>{$main_head}</tr>
    {$main_body}
  
  </table>
  </div>
  <script type='text/javascript'>
  (function() {
      new superTable('ugm_tb', {
          cssSkin : 'sSky', //颜色方案
          fixedCols : 1 //固定几列
      });
  })();
  </script>
  ";
  # 這裡若用「%」設寬度且標題過長,則垂直捲軸失效
  $main=$select_form.ugm_div($xoopsModuleConfig['statements_title']." - {$year} 年 {$month} 月份 各單位領用消耗品統計表",$main,"","width:95%;");
  return $main;

 

2013年4月25日 星期四

TCPDF分頁2

<?php

$page_count=28;//每頁筆數
while($all=$xoopsDB->fetchArray($result)){
 
  $i=0;
  
  $array=取得列表陣列函數;# 將資料整合成陣列
  
  $count=count(陣列);
  
  foreach($array as $key=>$value){
    if($i==0 or $i%($page_count)==0){
      $pdf->AddPage(); //新增頁面
      # ------- 每頁標題 ---------------------
      $main="";
    }
    foreach($value as $k1=>$v1){
      $$k1=$v1;    
    }
    # ------- body ---------------------------
    $main.="身體檔";
    $i++;
  
    if($i==$count){ 
     $main.="本期結餘"+"頁尾"; 
     $pdf->writeHTML($main, true, false, false, false, '');
    }elseif($i%($page_count)==0){
      #換頁
     $main.="頁尾"; 
     $pdf->writeHTML($main, true, false, false, false, ''); 
    }
  } 
}
// -----------------------------------------------------------------------------
$pdf->Output("pdf_commodity_in_out_{$year}-{$month}.pdf", 'I');


?>

2013年4月18日 星期四

TCPDF分頁

$page=1;
$row=1;
$page_count=20;//每頁筆數
$total         //總筆數

while($all=$xoopsDB->fetchArray($result)){

  # -------- 頁首 -------------------------------------------------------
  if($row==1 or ($row%(($page-1)*$page_count+1)==0 and $row>$page_count)){ 
    $pdf->AddPage(); //新增頁面
    $main="<table><tr><th></th></tr>";
  }
  #----------body ----------------------
   $main.="<tr><td></td></tr>"; 
  #--------- 頁尾 ------------------------
  if($row==$total or $row%($page_count)==0){
   $main.="</table>";
   $pdf->writeHTML($main, true, false, false, false, '');
   $page++; #頁數
   $main="";#內容
  }
  $row++;
}

2013年3月29日 星期五

XOOPS與getdate()關係

範例

#---------------------------------------------------------------------
$time=xoops_getUserTimestamp(time()); # xoops 使用者時間 

1364583916
#---------------------------------------------------------------------
$today  = getdate($time );  # 格式化日期(xoops 使用者時間) 顯示畫面 
 
Array ( 
[seconds] => 16 
[minutes] => 5 
[hours] => 19 
[mday] => 29 
[wday] => 5 
[mon] => 3 
[year] => 2013 
[yday] => 87 
[weekday] => Friday 
[month] => March 
[0] => 1364583916 ) 
#---------------------------------------------------------------------

$today1 = getdate(); # 格式化日期(主機時間)

Array ( 
[seconds] => 16 
[minutes] => 5 
[hours] => 11 
[mday] => 29 
[wday] => 5 
[mon] => 3 
[year] => 2013 
[yday] => 87 
[weekday] => Friday 
[month] => March 
[0] => 1364555116 ) 

#---------------------------------------------------------------------
$today2 = getdate(userTimeToServerTime($time)); 
# 格式化日期(將xoops 使用者時間,還原成主機時間) 儲存進資料庫

Array ( 
[seconds] => 16 
[minutes] => 5 
[hours] => 11 
[mday] => 29 
[wday] => 5 
[mon] => 3 
[year] => 2013 
[yday] => 87 
[weekday] => Friday 
[month] => March 
[0] => 1364555116 ) 
#---------------------------------------------------------------------

 

2013年3月13日 星期三

取得選定群組的會員名單

取得選定群組的會員名單
foreach ($groups  as $k => $group){
    if($k==0){
      $condition.=" where a.`groupid`='{$group}'";    
    }else{
      $condition.=" or a.`groupid`='{$group}'";
    }
}
$sql = "select a.`uid`,b.`name`,b.`uname`,c.`unit_sn`,d.`name` as group_name,e.`title` from ".$xoopsDB->prefix("groups_users_link")." as a left join ".$xoopsDB->prefix("users")." as b on a.`uid`=b.`uid` left join ".$xoopsDB->prefix("ugm_apply_users")." as c on a.`uid`=c.`uid`  left join ".$xoopsDB->prefix("groups")." as d on a.`groupid`=d.`groupid`  left join ".$xoopsDB->prefix("ugm_apply_unit")." as e on c.`unit_sn`=e.`sn`  {$condition} group by a.`uid` order by a.`uid`";

SQL可以透過關鍵字「distinct」將查詢的資料不重覆顯示

SQL可以透過關鍵字「distinct」將查詢的資料不重覆顯示
select distinct 欄位名 from 表名 where 查詢準則
備註:distinct 必須與 where 子句聯合使用,否則輸出的資料不會有變化
範例:
SELECT DISTINCT a.uid,b.name,b.uname
FROM  `x4df_groups_users_link` as a left join `x4df_users` as b on a.uid=b.uid
WHERE a.groupid =2
OR a.groupid =3

2013年3月10日 星期日

test

//識別名稱(給程式用的)
$modversion['config'][1]['name'] = 'show_num';
//顯示標題
$modversion['config'][1]['title'] = '_MI_NOTE_SHOW_NUM';
//偏好設定的說明
$modversion['config'][1]['description'] = '_MI_NOTE_SHOW_NUM_DSC';
//偏好設定的輸入欄位類型
$modversion['config'][1]['formtype'] = 'select';
//偏好設定的輸入值型態
$modversion['config'][1]['valuetype'] = 'int';
//偏好設定的選項設定
$modversion['config'][1]['options'] = array(5=>5,10=>10,15=>15);
//偏好設定的預設值。
$modversion['config'][1]['default'] = 10;

2013年1月14日 星期一

釋出xoops模組「petanque」滾球賽務管理(瑞士制)


釋出xoops模組「petanque」滾球賽務管理(瑞士制)
1.無責聲明:本模組為免費釋出之XOOPS模組,育將電腦工作室不負任何使用責任,若您不同意,請勿下載使用!建議先模擬測試沒問題後,再於正式比賽使用!

2.本模組目前為測試版1.1
   增加「對戰表列印」「場次表列印」


3.下載模組
  1. 2012-01-26-10-petanque
  2. 2012-01-27-10-petanque 修正安裝問題
  3. 2013-01-14_滾球賽務軟體_1.1_petanque.zip增加「對戰表列印」「場次表列印」

使用說明