|
|
|
ส่งข้อมูลออกเข้า Minitab ผมลองใช้แนวทางในบทเรียนในหัวข้อการส่งข้อมูลออกเข้า Ms Excel จะส่งออกในรูปแบบของไฟล์ csv |
|
|
|
|
|
|
|
ผมลองใช้แนวทางในบทเรียนในหัวข้อการส่งข้อมูลออกเข้า Ms Excel จะส่งออกในรูปแบบของไฟล์ csv มาใช้งานกับโปรแกรม Minitab ลักษณะการเก็บข้อมูลคล้ายๆกัน
มันเกิดปัญหาคือข้อมูลที่ส่งออกในรูปแบบของไฟล์ Minitab ที่ตั้งชี่อใน testing.mpj มันแสดงข้อมูลอยู่ในฟิลด์เดียวกันทั้งหมดในฟิลด์แรก แต่ถ้าเป็นไฟล์ testing.csv ที่เป็น excell จะได้ครับ?.code ของไฟ testing.cvs copyในบทเรียนครับ หัวข้อการส่งออกข้อมูลเข้าสู่ Ms Excel
ผลการรันโปรแกรม ที่ไฟ testing.mpj ใน minitab มันแสดงที่ฟิลด์แรก
C1 C2
id,question,c1,c2,c3,c4,answer,
8,choice8,select 1,select 2,select3,select 4,1,
7,choice 7,select 1,select2,select3,select 4,2,
6,choice 6,select 1,select2,select3,select 4,3,
????????..
//------------------------------------code ของ minitab
<?
header('Content-type: application/minitab');//ไม่แน่ใจว่าใส่อะไรเลยใส่ minitab ก่อน
header('Content-Disposition: attachment; filename="testing.MPJ"'); //ไม่แน่ใจว่าใส่อะไรเลยใส่ testing.mpj
$host="localhost";
$username="root";
$password="";
$db="mydatabase";
$tb="testing";
mysql_connect( $host,$username,$password) or die ("ติดต่อกับฐานข้อมูล Mysql ไม่ได้ ");
mysql_select_db($db) or die("เลือกฐานข้อมูลไม่ได้");
//echo "ข้อที่,คำถาม,ตัวเลือกที่ 1,ตัวเลือกที่ 2,ตัวเลือกที่ 3,ตัวเลือกที่ 4,ตัวเลือกที่ถูก,\n";
$sql = "select * from $tb";
$dbquery = mysql_query($sql);
$num_rows = mysql_num_rows($dbquery);
//---------------------------
$columns = mysql_num_fields($dbquery);
for ($i = 0; $i < $columns; $i++) {
echo mysql_field_name($dbquery, $i).",";
}
echo "\n";
//----------------------------------------
$i=0;
while ($i < $num_rows)
{
$result= mysql_fetch_array($dbquery);
echo "$result[id],$result[question],$result[c1],$result[c2],$result[c3],$result[c4],$result[answer],\n";
$i++;
}
?>
CREATE DATABASE ` mydatabase ` ;
รายละเอียดของตาราง
CREATE TABLE `testing` (
`id` int(3) NOT NULL auto_increment,
`question` varchar(100) NOT NULL default '',
`c1` varchar(100) NOT NULL default '',
`c2` varchar(100) NOT NULL default '',
`c3` varchar(100) NOT NULL default '',
`c4` varchar(100) NOT NULL default '',
`answer` int(1) NOT NULL default '0',
PRIMARY KEY (`id`)
) TYPE=My-ISAM AUTO_INCREMENT=11 ;
-----------------------------------------
INSERT INTO `testing` VALUES (1, ' choice 1', ' select 1', ' select 2', ' select 3', ' select 4', 1);
INSERT INTO `testing` VALUES (2, ' choice 2', ' select 1', ' select 2', ' select 3', ' select 4', 2);
-----------------------------------------------------------------------------------
โปรแกรม Minitab Demos loadload มาลงได้ที่นี่ครับ
ขอบคุณมากครับ.........
To download a free, fully-functional version of MINITAB 14 for a 30-day trial, click here. The size of this file is 74 Megabytes.
http://estore.e-academy.com/index.cfm?loc=minitabstatisticalsoftware14/main&parentID=1&CFID=2744892&CFTOKEN=54003654
http://www.minitab.com/products/minitab/14/demo/Default.aspx
Tag : - - - -
|
|
|
|
|
|
Date :
13 ม.ค. 2549 18:59:41 |
By :
somjet |
View :
3992 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?
header("Content-type: application/vnd.ms-excel");
// header('Content-type: application/csv'); //*** CSV ***//
header("Content-Disposition: attachment; filename=testing.xls");
?>
Go to : PHP Excel header("Content-type: application/vnd.ms-excel");
|
|
|
|
|
Date :
2011-08-12 14:26:41 |
By :
thaicreate |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|