麻辣家族討論版版's Archiver

27429200 發表於 2013-2-6 08:48

exel資料庫作帳號密碼登錄

我想要做一個exel資料庫作帳號密碼登錄的系統只要帳號,密碼,名字和錢幣的功能就好,
請求各位大大分享一下簡單的步驟,從連結到取出到讀取,輸入都在線上進行

mssiao 發表於 2013-6-3 18:00

傳值 取值 與 判別

以下是引用憂藍夢境的BLOG 取excel的值

<?php
set_include_path(get_include_path() . PATH_SEPARATOR . './Classes/');
include 'PHPExcel/IOFactory.php';

$reader = PHPExcel_IOFactory::createReader('Excel5'); // 讀取舊版 excel 檔案
$PHPExcel = $reader->load("course_table.xls"); // 檔案名稱
$sheet = $PHPExcel->getSheet(0); // 讀取第一個工作表(編號從 0 開始)
$highestRow = $sheet->getHighestRow(); // 取得總列數

// 一次讀取一列
for ($row = 2; $row <= $highestRow; $row++) {

    for ($column = 1; $column <= 9; $column++) {
        $val = $sheet->getCellByColumnAndRow($column, $row)->getValue();
        echo $val . ' ';
    }
    echo "<br />";

}

頁: [1]

麻辣家族討論版版為 麻辣學園 網站成員  由 昱得資訊工作室 © Since 1993 所提供