明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學習分享的學習平臺!

綜合圖片計數(shù)器

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

$counterfile="./counter/${name}.txt"; //定義數(shù)據(jù)文件;  
$fp=fopen("$counterfile","rw"); //打開數(shù)據(jù)文件  
$usernumber=fgets($fp,8); //取出數(shù)據(jù)文件數(shù)據(jù)  
$usernumber+=1; //將數(shù)據(jù)計算  
$int_counter=$usernumber; //分出一個操作變量  
$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  
//申請的時候,最好使用數(shù)據(jù)庫將申請名單保存,以便以后發(fā)現(xiàn)盜用者,在這里我沒考慮用戶驗證  
//可以直接生成這個文件就可以了  
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)成功的申請到服務了</h1>";  
print "請使用以下代碼&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" ?>");  

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


相關(guān)文章