<html>
<head>

harry123168 發表在 痞客邦 留言(0) 人氣()

<html>
  <head>

harry123168 發表在 痞客邦 留言(0) 人氣()

<html>
  <head>

harry123168 發表在 痞客邦 留言(0) 人氣()

程式一

<html >
  <head>
  <title>加法運算器</title>
  <script>
  function add() {
  var a = parseInt(document.getElementById('a').value);
  var b = parseInt(document.getElementById('b').value);
  document.getElementById('result').value = a+b ;
  }
  </script>
  </head>
  <body>
  <input id="a" type="text" />+<input id="b" type="text" />
  <button onclick="add()" ></button>
  <output id="result"></output>
  </body>
  </html>

20160506_144617.jpg

harry123168 發表在 痞客邦 留言(0) 人氣()

<html>
<head>

harry123168 發表在 痞客邦 留言(0) 人氣()

Android Studio 下載與安裝

Android Studio 啟動與設定

Android Studio Hello world 專案

20160422_155712

20160422_160422.jpg

harry123168 發表在 痞客邦 留言(0) 人氣()

http://z58134g.blogspot.tw./

https://drive.google.com/folderview?id=0B961WZvILJrgb1g1M3JHQkxOZms&usp=sharing

harry123168 發表在 痞客邦 留言(0) 人氣()

隨著行動裝置的興起,智慧型手機(SmartPhone)成為人們生活中不可缺的東西

不論你是要聊天社交、查詢資料、玩遊戲、聽音樂

harry123168 發表在 痞客邦 留言(0) 人氣()

BMI

20160415_162224.jpg

harry123168 發表在 痞客邦 留言(0) 人氣()

1.先開eclipse





2.
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "test";

// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
    die("Connection failed: " . $conn->connect_error);
}

$sql = "SELECT * FROM `user`";

$result = $conn->query($sql);

if ($result != null) {
    // output data of each row
    while($row = $result->fetch_assoc()) {
        echo "id: " . $row["name"]. $row["passwd"]. "<br>";
    }
} else {
    echo "0 results";
}
$conn->close();
?>


harry123168 發表在 痞客邦 留言(0) 人氣()

1 2