明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

綜合圖片計(jì)數(shù)器

[摘要]-------------------------------------------------------------------------------- 請(qǐng)保持文章的完整性 -------------------------------------------------------...
--------------------------------------------------------------------------------  
請(qǐng)保持文章的完整性  
--------------------------------------------------------------------------------------  
<?  
//counter.php All rights reserved http://sports98.126.com  
//類似163的計(jì)數(shù)器,可以申請(qǐng)使用,開通多用戶服務(wù),[圖片計(jì)數(shù)器]v1.00 代碼免費(fèi),如果您使用本代碼請(qǐng)保證您的代碼也要完全公布  

$counterfile="./counter/${name}.txt"; //定義數(shù)據(jù)文件;  
$fp=fopen("$counterfile","rw"); //打開數(shù)據(jù)文件  
$usernumber=fgets($fp,8); //取出數(shù)據(jù)文件數(shù)據(jù)  
$usernumber+=1; //將數(shù)據(jù)計(jì)算  
$int_counter=$usernumber; //分出一個(gè)操作變量  
$int_pan=10000000; //定義被除數(shù)  
for($int_b1=0;$int_b1<=7;$int_b1++) //此循環(huán)為判定數(shù)據(jù)將數(shù)據(jù)更改為圖象位置  
{  
$int_a[$int_b1]=$usernumber / $int_pan;  
$int_a[$int_b1]=intval($int_a[$int_b1]);  
$int_a_a[$int_b1]=selectpic($int_a[$int_b1],$xxxx); /* 注意這里如果是單用戶可以省略使用函數(shù),使用函數(shù)是為了多用戶使用,將數(shù)據(jù)加密使用 */  
$usernumber=$usernumber % $int_pan;  
$int_pan=$int_pan /10;  
}  
echo "<div style="border:dotted;width:xxx;border-color:${rgb};height:xxx;cursor:hand;">"; //輸出數(shù)據(jù)圖象框架  
for($int_la=0;$int_la<=7;$int_la++)  
{  
echo "$int_a_a[$int_la]"; //輸出數(shù)據(jù)圖象  
}  
echo "</div>";  
exec("del $counterfile"); //刪除數(shù)據(jù)文件防止追加  
//unix 下使用 exec("rm -vf $counterfile");  
exec("echo $int_counter > $counterfile"); //添加最新數(shù)據(jù)到文件內(nèi)  
function selectpic($int_tmp,$path) //判定圖片位置函數(shù)  
{  
$int_pic="<img src='http://www.okasp.com/techinfo/pic/${path}/${int_tmp}.gif'>";  
return($int_pic);  
}  
?>  
------------------------------------------------------------------------------------  
<?  
//jsq.php  
//申請(qǐng)的時(shí)候,最好使用數(shù)據(jù)庫(kù)將申請(qǐng)名單保存,以便以后發(fā)現(xiàn)盜用者,在這里我沒(méi)考慮用戶驗(yàn)證  
//可以直接生成這個(gè)文件就可以了  
if($submit){  
$db=mysql_connect("host","name","password") or die ("connect faild!");  
mysql_select_db("table",$db);  
$query="insert into table value('','')";  
$result=mysql_query($query,$db);  
exec("echo 0 > ./counter/${username}.txt");  
print "<h1>恭喜!您已經(jīng)成功的申請(qǐng)到服務(wù)了</h1>";  
print "請(qǐng)使用以下代碼&lt;script language=javascript src="http://host/cccc.php?name=xxxx&xxxx=1&rgb=color"&gt;&lt;/script&gt;";  
?>  
-----------------------------------------------------------------------------------  
//cccc.php  
document.write("<? include "./counter.php" ?>");  

//注意本計(jì)數(shù)器 結(jié)合mysql后添加驗(yàn)證就可以進(jìn)行申請(qǐng)服務(wù)了。  
//調(diào)試在oso通過(guò),在51順利通過(guò),在2000+iis5.0+php4.0.5順利通過(guò)