欧美性猛交XXXX免费看蜜桃,成人网18免费韩国,亚洲国产成人精品区综合,欧美日韩一区二区三区高清不卡,亚洲综合一区二区精品久久

打開(kāi)APP
userphoto
未登錄

開(kāi)通VIP,暢享免費電子書(shū)等14項超值服

開(kāi)通VIP
多多分析2核心數據與單一入口
先在admin 后臺 操作試試看 ,看看系統的功能
在后臺數據庫管理 看看數據表


多多的核心 數據是 
用戶(hù)    user
商品    goods表   baobei
交易    tradelist
兌換    duihuan



ajax

window.location='<?=u('jump',$act,$_GET)?>'

index.php 根據url決定 路由 決定 包含的tpl

dd.config.php 中取得mod  act 名字 決定路由

后臺 生成  配置  寫(xiě)到data/json/ 
例如 導航

webset 從data/json/   webset .php中讀取
$webset=dd_get_cache('webset');
$constant=dd_get_cache('constant');


mod.func.php 中 決定$mod_act_url   login 還是 index
"$mod_act_url"  http://localhost/duoduo/index.php?mod=user&act=login

<script>
function topHtml() {/*<div class="topleftA" style="padding-top:10px;">
	<a href="http://localhost/duoduo/index.php?mod=user&act=index">{$name}</a> 
	<a href="http://localhost/duoduo/index.php?mod=user&act=msg">{$msgsrc}</a>  |  余額:<a href="http://localhost/duoduo/index.php?mod=user&act=mingxi">¥{$money}</a>
	  集分寶:<a href="http://localhost/duoduo/index.php?mod=user&act=mingxi">{$jifenbao}</a> 
	個(gè)  |  
</div>
<div class=loginWays1 onmouseover=showHide('menu_usernav') onmouseout=showHide('menu_usernav')>
          <SPAN>
            我的賬戶(hù)<img src="template/default/images/downarrow.gif" alt="箭頭" />
          </SPAN>
          <div id=menu_usernav>
            <div class="wode">我的賬戶(hù)<img src="template/default/images/toparrow.gif" alt="箭頭" /></div>
            <ul>
              <li><A href="http://localhost/duoduo/index.php?mod=user&act=tradelist">我的訂單管理</A></li>
              <li><A href="http://localhost/duoduo/index.php?mod=user&act=mingxi">我的賬戶(hù)明細</A></li>
			                <li><A href="http://localhost/duoduo/index.php?mod=user&act=info">我的賬戶(hù)設置</A></li>
            </ul>
          </div>
        </div>
		<div class"fl" style=" margin-top:10px">|   <a href="http://localhost/duoduo/index.php?mod=user&act=exit&t=1399937069">退出</a></div>*/;}

$.ajax({
	url: 'http://localhost/duoduo/index.php?mod=ajax&act=userinfo',
	dataType:'jsonp',
	jsonp:"callback",
	success: function(data){
		if(data.s==1){
			topHtml=getTplObj(topHtml,data.user);
			$('.container .topleft').html(topHtml).show();
		}
		else{
			$('.container .topleft').show();
		}
	}
});
</script>

奇怪的做法。

/*獲取模板函數*/
function getTpl(_function){
var tpl=_function.toString();
alert(tpl);
tpl=tpl.replace('function '+getFuncName(_function)+'() {/*','').replace(/\*\/;}$/,'');
alert(tpl);
return tpl;
//alert(tpl.match(/^[\w]+\snav_tpl\(\)\{\s+\/\*([\w\s*\/\\<>'"=#;:$.()]+)\*\/\s+\}$/i)[1]);
}


data/js 是緩存?
http://localhost/duoduo/index.php?mod=huan&act=list  分析
點(diǎn)擊頂部的
淘寶 掌柜 商城 寶貝
會(huì )在下面出現一個(gè)三角,表示當前選中項。
原理  利用 a 標簽可以有幾種狀態(tài)。 沒(méi)未選中  選中 hover  每種狀態(tài) 對應不同的css
用css 實(shí)現下面的三角
<a class="n" value="輸入您想要的淘寶商品網(wǎng)址" mod="tao" act="view" name="q">淘寶</a>
 
template\default\header.tpl.php(249):  

$('.s-nav a').removeClass().addClass('n'); $(this).removeClass().addClass('y');
----------------------------------------
 template\default\header.tpl.php(266):  
$input.val($(this).attr('value')); //設置placehold值
跳動(dòng)的new 的效果
 <a target="_self" class="anav" href="http://localhost/duoduo/">首頁(yè)</a>
            <li id="fontc" class="linav">

    <a class="anav" href="http://localhost/duoduo/index.php?mod=tao&act=jiu" target="_self">

        九元購

        <img alt="new" src="template/default/images/newn.gif" style="width:32px; height:22px"></img>
    </a>

</li>
            
 
 
退出 module= user   act =exit
對于index/index
 
  根據cookie 自動(dòng)登錄

登錄 后檢索 用戶(hù)的 個(gè)人信息。
金錢(qián)   消息

header.act.php
根據cookie判斷登錄
$userlogininfo=unserialize(get_cookie('userlogininfo')); 
$hcookieuid = $userlogininfo['uid']; 
$hcookiepassword = $userlogininfo['ddpassword']; 
$hcookiesavetime = $userlogininfo['ddsavetime']; 




login.act.tpl 登錄
登錄成功后調用    
function user_login($uid,$md5pwd,$life='')  //comm.fun.php
set_cookie("userlogininfo", $userlogininfo, $life);
 
template\default\index.tpl.php
------- include(TPLPATH.'/header.tpl.php');  登錄 導航
topHtml()  已登錄顯示 余額 積分寶
 
------- <?php include(TPLPATH.'/footer.tpl.php');?>
 
function u()   mod.func.php
mod=user act=login
mod=user act=register 
 
biaotou   duoduo_
wjt 偽靜態(tài)
tdj 淘點(diǎn)金
 
多多返利V8.1(20131105)最新商業(yè)純凈版.rar 中 dd.func.php  加密了
多多淘寶客V8.1@www.nituo.com\comm\dd.func.php  未加密
 
'StopAttack(' 在 'E:\YU\WWW\多多淘寶客:
 多多淘寶客
V8.1@www.nituo.com\comm\dd.func.php(681): function StopAttack($
 
function browser() { 根據useragent判斷瀏覽器
 if(!isset($_SERVER["HTTP_USER_AGENT"])
 
 搜索完成, 找到 '52jscn' 132 次。(6 個(gè)文件)。
 
ajax模塊
用戶(hù)注冊
用戶(hù)登錄
用戶(hù)的后臺管理
文章  主要是幫助 什么是返利 如何
 
管理員的后臺管理
 
 
header.tpl
top1.tpl
頂部的廣告 管理
 
footer.tpl
底部的友情鏈接
本站僅提供存儲服務(wù),所有內容均由用戶(hù)發(fā)布,如發(fā)現有害或侵權內容,請點(diǎn)擊舉報。
打開(kāi)APP,閱讀全文并永久保存 查看更多類(lèi)似文章
猜你喜歡
類(lèi)似文章
ECSHOP退換貨插件安裝使用教程
Windows10_64位搭建WampServer(運行php代碼)教程及問(wèn)題
【phpcms支持團隊】【二次開(kāi)發(fā)】下載模型批量添加軟件
方格花衣裙(57)
Ubuntu14.4.1下LAMP的環(huán)境配置,超詳細
apache和IIS共用80端口
更多類(lèi)似文章 >>
生活服務(wù)
分享 收藏 導長(cháng)圖 關(guān)注 下載文章
綁定賬號成功
后續可登錄賬號暢享VIP特權!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服

欧美性猛交XXXX免费看蜜桃,成人网18免费韩国,亚洲国产成人精品区综合,欧美日韩一区二区三区高清不卡,亚洲综合一区二区精品久久