📄 show_md_move.php
字号:
<?php
////////////////////////////////////////////////////////
// Author by Shuweich
// Date : 2006.05.08
// 建站支持: http://www.shuweich.org
// 作者: Shuweich
// QQ: 1502384
// ICQ: 190492112
// MSN: shuweich@hotmail.com
// E-mail: root@shuweich.org
// E-mail: shuweich@163.com
// CMS交流站点: http://www.cmscn.org
////////////////////////////////////////////////////////
// 最新注册会员 by ty919
// For 注册会员(免费会员)
////////////////////////////////////////////////////////
function b_show_md_move() {
global $xoopsDB;
// 随机展示门店名录
$que = "select store_id,s_name,md_href,md_target from ".$xoopsDB->prefix("market_store")." where shbz='1' order by store_id";
$res = $xoopsDB->query($que);
/*
$rows = array();
while( $row = $xoopsDB->fetchArray($res) ) $rows[] = $row;
$mdid = range( 0,count($rows) );
shuffle($mdid);
$block = array();
for ( $i=0; $i<count($mdid); $i++ ) {
$xh = $mdid[$i];
$block[] = $rows[$xh];
}
*/
$block = array();
while( $row = $xoopsDB->fetchArray($res) ) $block[] = $row;
shuffle($block);
return $block;
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -