2016年6月2日 星期四

第一題

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=BIG5">
<title>第一題</title>
</head>
<body>
<h2>document.write用法</h2>
 <Script type ="text/javascript">
var rx1,rx2,rx3,maxNum,minNum;
maxNum=9;
minNum=0;
rx1=Math.floor( Math.random() * (maxNum - minNum + 1) ) + minNum;
rx2=Math.floor( Math.random() * (maxNum - minNum + 1) ) + minNum;
rx3=Math.floor( Math.random() * (maxNum - minNum + 1) ) + minNum;
  document.write("亂數"+rx1,rx2,rx3);
 </Script>
</body>
</html>








第二題

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=BIG5">
<title>第二題</title>
</head>
<body>
<h2>document.write用法</h2>
 <Script type ="text/javascript">
var rx1,rx2,rx3,maxNum,minNum;
maxNum=9;
minNum=0;
rx1=Math.floor( Math.random() * (maxNum - minNum + 1) ) + minNum;
rx2=Math.floor( Math.random() * (maxNum - minNum + 1) ) + minNum;
rx3=Math.floor( Math.random() * (maxNum - minNum + 1) ) + minNum;
while(rx1==rx2)
{
rx1=Math.floor( Math.random() * (maxNum - minNum + 1) ) + minNum;}

while(rx2==rx3||rx3==rx1)
{
rx3=Math.floor( Math.random() * (maxNum - minNum + 1) ) + minNum;}

  document.write("亂數"+rx1,rx2,rx3);
 </Script>
</body>
</html>







2016年5月13日 星期五

把圖放上去



<!DOCTYPE html ><html >
<head>
    <title>
    Form
    </title>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script>
      google.charts.load('current', {'packages':['corechart']});
      google.charts.setOnLoadCallback(drawChart);
var a;
var b;
var c;
function check1() {
a=0;
b=0;
c=0;
var radio1=document.getElementsByName("v1");
var radio2=document.getElementsByName("v2");
var radio3=document.getElementsByName("v3");
var radio4=document.getElementsByName("v4");
var radio5=document.getElementsByName("v5");
var radio6=document.getElementsByName("v6");
var radio7=document.getElementsByName("v7");
var radio8=document.getElementsByName("v8");
var radio9=document.getElementsByName("v9");
var radio10=document.getElementsByName("v10");
var flag=new Array();
   for(var i=0;i<radio1.length;i++){
     if(radio1.item(i).checked==true)        {
       flag[1]=i+1;
                  break;
       }
   }
   for(var i=0;i<radio2.length;i++){
     if(radio2.item(i).checked==true)        {
       flag[2]=i+1;
                  break;
       }
   }
   for(var i=0;i<radio3.length;i++){
     if(radio3.item(i).checked==true)        {
       flag[3]=i+1;
                  break;
       }
   }
   for(var i=0;i<radio4.length;i++){
     if(radio4.item(i).checked==true)        {
       flag[4]=i+1;
                  break;
       }
   }
   for(var i=0;i<radio9.length;i++){
     if(radio9.item(i).checked==true)        {
       flag[9]=i+1;
                  break;
       }
   }
   for(var i=0;i<radio5.length;i++){
     if(radio5.item(i).checked==true)        {
       flag[5]=i+1;
                  break;
       }
   }
   for(var i=0;i<radio10.length;i++){
     if(radio10.item(i).checked==true)        {
       flag[10]=i+1;
                  break;
       }
   }
   for(var i=0;i<radio6.length;i++){
     if(radio6.item(i).checked==true)        {
       flag[6]=i+1;
                  break;
       }
   }
   for(var i=0;i<radio7.length;i++){
     if(radio7.item(i).checked==true)        {
       flag[7]=i+1;
                  break;
       }
   }
   for(var i=0;i<radio8.length;i++){
     if(radio8.item(i).checked==true)        {
       flag[8]=i+1;
                  break;
       }
}
for(var i=1;i<11;i++)
{
if(flag[i]==1)
{a=a+1;}
document.getElementById('c1').value=a;
}
for(var i=1;i<11;i++)
{
if(flag[i]==2)
{b=b+1;}
document.getElementById('c2').value=b;
}
for(var i=1;i<11;i++)
{
if(flag[i]==3)
{c=c+1;}
document.getElementById('c3').value=c;
}

drawChart()
}
function drawChart() {

        var data = google.visualization.arrayToDataTable([
          ['Task', 'Hours per Day'],
          ['one',     a],
          ['two',      b],
          ['three',    c]
        ]);

        var options = {
          title: 'My Daily Activities'
        };

        var chart = new google.visualization.PieChart(document.getElementById('piechart'));

        chart.draw(data, options);
      }
</script>
</head>
<body>
   <form action="post.php" method="post"  name="add" enctype="multipart/form-data" onSubmit="return check();" >
<h1>1、ssss?</h1>
<input name="v1" type="radio" value="1">1        
<input name="v1" type="radio" value="2">2          
<input name="v1" type="radio" value="3">3
<input type="button" value="submit" onclick="check1()"/>

<h1>2、ssss?</h1>
<input name="v2" type="radio" value="1">1      
<input name="v2" type="radio" value="2">2          
<input name="v2" type="radio" value="3">3

<h1>3、ssss?</h1>
<input name="v3" type="radio" value="1">1      
<input name="v3" type="radio" value="2">2          
<input name="v3" type="radio" value="3">3

<h1>4、ssss?</h1>
<input name="v4" type="radio" value="1">1      
<input name="v4" type="radio" value="2">2          
<input name="v4" type="radio" value="3">3

<h1>5、ssss?</h1>
<input name="v5" type="radio" value="1">1      
<input name="v5" type="radio" value="2">2          
<input name="v5" type="radio" value="3">3

<h1>6、ssss?</h1>
<input name="v6" type="radio" value="1">1      
<input name="v6" type="radio" value="2">2          
<input name="v6" type="radio" value="3">3

<h1>7、ssss?</h1>
<input name="v7" type="radio" value="1">1      
<input name="v7" type="radio" value="2">2          
<input name="v7" type="radio" value="3">3

<h1>8、ssss?</h1>
<input name="v8" type="radio" value="1">1      
<input name="v8" type="radio" value="2">2          
<input name="v8" type="radio" value="3">3

<h1>9、ssss?</h1>
<input name="v9" type="radio" value="1">1      
<input name="v9" type="radio" value="2">2          
<input name="v9" type="radio" value="3">3

<h1>10、ssss?</h1>
<input name="v10" type="radio" value="1">1      
<input name="v10" type="radio" value="2">2          
<input name="v10" type="radio" value="3">3
</form>
c1:
 <input type="text" name="submit" id="c1" /><br><br/>
c2:
 <input type="text" name="submit" id="c2" /><br><br/>
c3:
 <input type="text" name="submit" id="c3" /><br><br/>

   <div id="piechart" style="width: 900px; height: 500px;"></div>
</body>
</html>

















2016年5月6日 星期五

單選     總和相加

一樣打開wordpad
<!DOCTYPE html >
<html >
<head>
    <title>單選</title>
<script>
function check1() {
var radio1=document.getElementsByName("v1");
var radio2=document.getElementsByName("v2");
var radio3=document.getElementsByName("v3");
var radio4=document.getElementsByName("v4");
var radio5=document.getElementsByName("v5");
var radio6=document.getElementsByName("v6");
var radio7=document.getElementsByName("v7");
var radio8=document.getElementsByName("v8");
var radio9=document.getElementsByName("v9");
var radio10=document.getElementsByName("v10");
   for(var i=0;i<radio1.length;i++)
   {
         if(radio1.item(i).checked==true)
             {
     flag1=i+1;
                  break;
       }
   }




   for(var i=0;i<radio2.length;i++)
   {
         if(radio2.item(i).checked==true)
             {
     flag2=i+1;
                  break;
       }
   }
for(var i=0;i<radio3.length;i++)
   {
         if(radio3.item(i).checked==true)
             {
     flag3=i+1;
                  break;
       }
   }
for(var i=0;i<radio4.length;i++)
   {
         if(radio4.item(i).checked==true)
             {
     flag4=i+1;
                  break;
       }
   }
for(var i=0;i<radio5.length;i++)
   {
         if(radio5.item(i).checked==true)
             {
     flag5=i+1;
                  break;
       }
   }
for(var i=0;i<radio6.length;i++)
   {
         if(radio6.item(i).checked==true)
             {
     flag6=i+1;
                  break;
       }
   }
for(var i=0;i<radio7.length;i++)
   {
         if(radio7.item(i).checked==true)
             {
     flag7=i+1;
                  break;
       }
   }
for(var i=0;i<radio8.length;i++)
   {
         if(radio8.item(i).checked==true)
             {
     flag8=i+1;
                  break;
       }
   }
for(var i=0;i<radio9.length;i++)
   {
         if(radio9.item(i).checked==true)
             {
     flag9=i+1;
                  break;
       }
   }
for(var i=0;i<radio10.length;i++)
   {
         if(radio10.item(i).checked==true)
             {
     flag10=i+1;
                  break;
       }
   }
document.write(flag1,flag2,flag3,flag4,flag5,flag6,flag7,flag8,flag9,flag10);
document.write("<br>");
document.write(flag1+flag2+flag3+flag4+flag5+flag6+flag7+flag8+flag9+flag10);
}
</script>
</head>
<body>
    <form action="post.php" method="post"  name="add" enctype="multipart/form-data" onSubmit="return check();" >
<h1>1、ssss?</h1>
<input name="v1" type="radio" value="1">1          
<input name="v1" type="radio" value="2">2            
<input name="v1" type="radio" value="3">3
<input type="button" value="submit" onclick="check1()" />


<h1>2、aaa?</h1>
<input name="v2" type="radio" value="1">1          
<input name="v2" type="radio" value="2">2            
<input name="v2" type="radio" value="3">3


<h1>3、ssss?</h1>
<input name="v3" type="radio" value="1">1          
<input name="v3" type="radio" value="2">2            
<input name="v3" type="radio" value="3">3

<h1>4、ssss?</h1>
<input name="v4" type="radio" value="1">1          
<input name="v4" type="radio" value="2">2            
<input name="v4" type="radio" value="3">3

<h1>5、ssss?</h1>
<input name="v5" type="radio" value="1">1          
<input name="v5" type="radio" value="2">2            
<input name="v5" type="radio" value="3">3

<h1>6、ssss?</h1>
<input name="v6" type="radio" value="1">1          
<input name="v6" type="radio" value="2">2            
<input name="v6" type="radio" value="3">3

<h1>7、ssss?</h1>
<input name="v7" type="radio" value="1">1          
<input name="v7" type="radio" value="2">2            
<input name="v7" type="radio" value="3">3

<h1>8、ssss?</h1>
<input name="v8" type="radio" value="1">1          
<input name="v8" type="radio" value="2">2            
<input name="v8" type="radio" value="3">3

<h1>9、ssss?</h1>
<input name="v9" type="radio" value="1">1          
<input name="v9" type="radio" value="2">2            
<input name="v9" type="radio" value="3">3

<h1>10、ssss?</h1>
<input name="v10" type="radio" value="1">1          
<input name="v10" type="radio" value="2">2            
<input name="v10" type="radio" value="3">3
</form>
</body>
</html>

2016年4月29日 星期五

把這些東西貼在wordpad
然後把他轉成html
就可以了



<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=BIG5">
<title>第一支javaScript</title>
</head>
<body>
<h2>document.write用法</h2>
 <Script type ="text/javascript">

 </Script>
<form action="#" method="post" class="demoForm" id="demoForm">
    <fieldset>
        <legend>Demo: Get Value of Selected</legend>
   
    <p>Select a shipping method:</p>
    <p>
        <label><input type="radio" name="ship" value="a" checked />a) Standard Ground</label>
        <label><input type="radio" name="ship" value="b" /> b) Second Day</label>
        <label><input type="radio" name="ship" value="c" />c) Overnight</label>
        <label><input type="radio" name="ship" value="d" />d) Pick up</label>
    </p>
   
    <p><button type="button" name="getVal">Get Value of Selected</button></p>
   
    </fieldset>
</form>
<script type="text/javascript">
// to remove from global namespace
(function() {
   
    function getRadioVal(form, name) {
        var val;
        var radios = form.elements[name];
       
        for (var i=0, len=radios.length; i<len; i++) {
            if ( radios[i].checked ) {
                val = radios[i].value;
                break;
            }
        }
        return val;
    }


    document.forms['demoForm'].elements['getVal'].onclick = function() {
        alert( 'The selected radio button\'s value is: ' + getRadioVal(this.form, 'ship') );
    };
   
   
    // disable submission of all forms on this page
    for (var i=0, len=document.forms.length; i<len; i++) {
        document.forms[i].onsubmit = function() { return false; };
    }
   
}());
</script>
</body>
</html>





2016年4月17日 星期日

第三周  3/11

1.下載阿帕契
2.在網頁打http://localhost/phpmyadmin
3.建立新的資料庫
4.建立資料表欄位
5.

6.新增資料
7.

第二周  2/26


1.下載阿帕契
2.進入xampp\htdocs\dashboard 創一個demo.php
<?php
// 這是 C++ 風格註解
#  這是 Perl 風格註解
 
echo "\n\n";
echo date("Y/m/d")."\n";
echo "↑↑ 上面印出今天幾月幾日\n";
echo strftime("%X", time())."\n";
echo "↑↑ 上面印出現在幾點幾分\n";
echo "\n\n";
 
/* 《程式語言教學誌》的範例程式
    檔名:demo.php
    功能:示範 PHP 程式
    作者:張凱慶
    時間:西元 2012 年 11 月 */
?>
http://pydoing.blogspot.tw/2012/11/php-Understanding-of-PHP-Progamming-Language.html

3.
    把php.ini檔 內已改為Big5