
html>
<head>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript">
google.charts.load('current', {'packages':['corechart']});
google.charts.setOnLoadCallback(drawChart);
ic3ic8 發表在 痞客邦 留言(0) 人氣(1)

程式如下
<html>
<head>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript">
google.charts.load('current', {'packages':['corechart']});
google.charts.setOnLoadCallback(drawChart);
ic3ic8 發表在 痞客邦 留言(0) 人氣(2)

<!DOCTYPE html >
<html >
<head>
<title>form沒差</title>
<script>
function check1(){
var radio1=document.getElementsByName("v1");
radio2=document.getElementsByName("v2");
radio3=document.getElementsByName("v3");
radio4=document.getElementsByName("v4");
radio5=document.getElementsByName("v5");
radio6=document.getElementsByName("v6");
radio7=document.getElementsByName("v7");
radio8=document.getElementsByName("v8");
radio9=document.getElementsByName("v9");
radio10=document.getElementsByName("v10");
ic3ic8 發表在 痞客邦 留言(0) 人氣(0)

先去網站http://appinventor.mit.edu/explore/content/windows.html
ic3ic8 發表在 痞客邦 留言(0) 人氣(6)

phpMyAdmin登入畫面,當然您也可以透過網址來登入管理資料庫:「http://127.0.0.1/phmyadmin」或是「http://localhost/phpmyadmin」,登入名稱為「root」,密碼部分請留空,然後點擊﹝執行﹞。
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "contact";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$sql = "SELECT name, phone, mobile FROM contact";
$result = $conn->query($sql);
if ($result != null) {
// output data of each row
while($row = $result->fetch_assoc()) {
echo "Name: " . $row["name"]. " - Phone: " . $row["phone"]. " " . $row["mobile"]. "
";
}
} else {
echo "0 results";
}
$conn->close();
?>
ic3ic8 發表在 痞客邦 留言(0) 人氣(13)
[網站架設] 用電腦架設網站!XAMPP 安裝教學 XAMPP是一個把Apache網頁伺服器與PHP、Perl及MariaDB集合在一起的安裝包,允許用戶可以在自己的電腦上輕易的建立網頁伺服器。
ic3ic8 發表在 痞客邦 留言(0) 人氣(0)

1. JAVA開發工具(Java Development kit - JDK)
ic3ic8 發表在 痞客邦 留言(0) 人氣(2)

程式設計工藝大師
package test;
ic3ic8 發表在 痞客邦 留言(0) 人氣(2)
using System;
ic3ic8 發表在 痞客邦 留言(0) 人氣(6)

using System;
using System.Collections.Generic;
ic3ic8 發表在 痞客邦 留言(0) 人氣(4)