程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> while(){}的高級用法

while(){}的高級用法

編輯:關於PHP編程

<?php
/*$ip="127.0.0.1";
if($_SERVER["REMOTE_ADDR"]==$ip){
   header("location:xxx.php");
}else{

      header("location:yyy.php");
}


function limitIp($ip){
if($_SERVER[REMOTE_ADDR]==$ip){
   header("location:XXx.php");
}else{
   header("location:YYY.php");
}
}*/

/*
echo "<table border=1 width=800 align=center>";
echo "<caption><h1>學生成績</h1></caption>";
$i=0;
$j=0;
while($i<1000){
if($i%10==0){
   if($j++%2==0){
    $bgc="#cccccc";
   }else{
      $bgc="aaffaa";
   }
   //echo "<tr bgcolor=$bgc>";
   echo "<tr onmouseover=show(this) onmouseout=noshow(this) bgcolor=".$bgc.">";
}
echo "<td>$i</td>";
if(++$i%10==0){
   echo "</tr>";
}

}
echo "<table>";
*/
echo "<table width=800 border=1 align=center>";
echo "<caption><h1>學生成績</h1></caption>";
$i=0;
$k=0;
while($i<100){
    if($i%2==0){
    $bgc="#cccccc";
}else{
     $bgc="#aaffaa";
}
echo "<tr onmouseover=show(this) onmouseout=noshow(this) bgcolor=$bgc>";

$j=0;
while($j<10){
  
   echo "<td>$k</td>";
   $j++;
   $k++;
}
echo "</tr>";
$i++;

}
echo "</table>";
?>
<script>
var yuancolor=null;
function show(obj){
yuancolor=obj.style.backgroundColor;
obj.style.backgroundColor="red";
}
function noshow(obj){

obj.style.backgroundColor=yuancolor;
}

</script>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved