<html>
<head>

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

<html>
  <head>

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

出題目 判斷第幾選項 且加總  並將圖表顯示

 

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

<!DOCTYPE html >
<html >

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

 

文字檔改HTML格式

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

http://pclevin.blogspot.tw/2014/12/android-studio-hello-world.html

按照步驟一步一步做

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

需要下載3樣東西

1. JAVA開發工具(Java Development kit - JDK)

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

 

 

下載App Inventor 2 環境建置

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

 

<?php
$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"]. "<br>";
    }
} else {
    echo "0 results";
}
$conn->close();
?>

 

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

using System;
using System.Collections.Generic;

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

1 23