index.php:
<form id="form1" name="form1" method="post" action="">
總數:
<input type="text" name="total" id="total" />
<br />
筆數:
<input type="text" name="count" id="count" />
<br />
排除:
<input name="except" type="text" id="except" />
<br />
<input type="submit" name="button" id="button" value="送出" />
</form>
<hr>
<?php
if(isset($_POST['total']) && isset($_POST['count'])){
$POST_total = $_POST['total'];
$POST_count = $_POST['count'];
$POST_except = $_POST['except'];
$Rand = Array(); //定義陣列
$count = $POST_count ; //共產生幾筆
if(isset($_POST['except'])){
/*文字轉陣列-排除名單*/
$Rand = explode(",",$POST_except);
}
while($count > 0){
$randval = mt_rand(1,$POST_total); //取亂數
if (!in_array($randval, $Rand)) {
$count--;
$Rand[] = $randval; //若無重復則 將亂數塞入陣列
echo $randval."<br>";
}
}
}
?>
~歡迎轉載,但請註明來源網站名稱和網址,文章若有侵權,請來信告知,我們會盡快處理~
<form id="form1" name="form1" method="post" action="">
總數:
<input type="text" name="total" id="total" />
<br />
筆數:
<input type="text" name="count" id="count" />
<br />
排除:
<input name="except" type="text" id="except" />
<br />
<input type="submit" name="button" id="button" value="送出" />
</form>
<hr>
<?php
if(isset($_POST['total']) && isset($_POST['count'])){
$POST_total = $_POST['total'];
$POST_count = $_POST['count'];
$POST_except = $_POST['except'];
$Rand = Array(); //定義陣列
$count = $POST_count ; //共產生幾筆
if(isset($_POST['except'])){
/*文字轉陣列-排除名單*/
$Rand = explode(",",$POST_except);
}
while($count > 0){
$randval = mt_rand(1,$POST_total); //取亂數
if (!in_array($randval, $Rand)) {
$count--;
$Rand[] = $randval; //若無重復則 將亂數塞入陣列
echo $randval."<br>";
}
}
}
?>
~歡迎轉載,但請註明來源網站名稱和網址,文章若有侵權,請來信告知,我們會盡快處理~
響應式網頁架站只要6,888元起|[RWD]響應式網站,自適應網頁,讓SEO搜尋引擎最佳化你的網站
"你是獵人還是獵物?"
0 comments :
張貼留言
1.猛甲茶道,歡迎多留言,可以幫自己網站打廣告~
2.需要 猛甲茶道 回覆,請勿使用匿名留言[可使用名稱/網址,名稱填自己名字,若無網址,請填E-mail]。
3.匿名攻訐、不相干之廣告適用於無條件刪去法,望請海涵:)
4.您可以使用一些 HTML 標記,如:
<b>粗體</b>, <i>斜體</i>, <a href='網址'>描述文字</a>