 |
สอบถามเรื่อง คำสั่ง Create Folder แล้วจะไป Select ข้อมูลจาก DB ขึ้นมาโชว |
|
 |
|
|
 |
 |
|
1.สร้างโฟลเดอร์ ได้ยังครับ
2.select ค่ามาโชว์ทางหน้าเว็บ ก็น่าจะทำได้
3.นำค่าที่ select มาใส่ text file ตาม Code ก็ประมาณนั้น
ติดปัญหาตรงไหนครับ
|
 |
 |
 |
 |
Date :
2014-09-30 11:34:04 |
By :
apisitp |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ก้อ สร้าง folder ได้ละคะ แต่ select ให้มาอยุ่ใน ไฟล์ text ยังทำไม่ได้คะไม่รู้จะทำอย่างไร
|
 |
 |
 |
 |
Date :
2014-09-30 13:10:43 |
By :
noony |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
คุณยังไม่ได้ connect database หรือป่าว เลย error
สวน code อย่างอื่นใช้ได้ ปกติ
Code (PHP)
$file_to_write = 'LICP2014091800601.text';
if( is_dir($dir) === false )
{
mkdir($dir);
}
$file = fopen($dir . '/' . $file_to_write,"w");
while($rs = fetch_array()){// fetch ข้อมูล
$content_to_write .= $rs['xxxx'].' '.$rs['xxxx'].PHP_EOL;
}
fwrite($file, $content_to_write);
|
ประวัติการแก้ไข 2014-09-30 13:41:45 2014-09-30 13:52:01
 |
 |
 |
 |
Date :
2014-09-30 13:40:39 |
By :
gaowteen |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
include 'mysql.php';//คลาสนี้ search หาจากเว็บนี้ก็เจอ
$mysql=new MySQL_Connection("localhost","root","1234","test");
$mysql->charset = 'utf8';
$sqlw = 'SELECT name FROM `test` ORDER BY `id` ASC';
$mysql->query($sqlw);
$result = $mysql->queryResult($sqlw);
$total =$result->numRows;
if($total=0){
}else{
$strFileName = "thaicreate.txt";
$objFopen = fopen($strFileName, 'w');
while($rs = $result->fetch()){
echo $rs['name'];
$strText1 = $rs['name'];
fwrite($objFopen, $strText1);
}
fclose($objFopen);
}
แต่ขอนิดเถอะครับ คุณชอบเปิดคำถามลอย ๆ ไม่เจาะจง คุณลองไปอ่านที่คุณตั้งดูครับ
ไม่มีอะไรเลย อยากช่วยครับ เลยถามกลับ ไม่มี ต.ย. ข้อมูลมาให้ บางทีคำตอบตรง ๆ มันไม่มีหรอกครับ
คุณต้องประยุกต์เอา ผมเห็นคุณถามในลักษณะนี้มาหลายครั้ง คำตอบเฉพาะด้านไม่มี จะเอาตรง ๆ
พอถามอะไรกลับหน่อย ก็บอกไม่ได้ ไม่ได้ ลองทำหรือยังครับ
สิ่งที่คุณถามมาผมก็ทำไม่ได้หรอก แต่ก็ลองมานั่งทำ มันไม่ยากเกินไปที่จะลองครับ
|
ประวัติการแก้ไข 2014-09-30 14:15:26 2014-09-30 14:19:41
 |
 |
 |
 |
Date :
2014-09-30 14:14:55 |
By :
apisitp |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Code (PHP)
<?php
$dir = "20140918";
$file_to_write = 'LICP2014091800601.LICP';
$content_to_write = "$objWrite";
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("dea");
$strSQL = "SELECT * FROM dea";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
while($objResult = mysql_fetch_array($objQuery))
{
fwrite($objWrite, "\"$objResult[no]\",\"$objResult[passport]\",\"$objResult[yodeng]\",");
fwrite($objWrite, "\"$objResult[nameeng]\",\"$objResult[lastnameeng]\",\"$objResult[yod]\" \r\n");
}
if( is_dir($dir) === false )
{
mkdir($dir);
}
$file = fopen($dir . '/' . $file_to_write,"w");
// a different way to write content into
// fwrite($file,"Hello World.");
fwrite($file, $content_to_write);
// closes the file
fclose($file);
// this will show the created file from the created folder on screen
include $dir . '/' . $file_to_write;
?>
|
 |
 |
 |
 |
Date :
2014-09-30 14:24:48 |
By :
noony |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอโทดคะ หนูอาจจะไม่เข้าใจอะไรเลย เลยถามคุณ //// จาก Code ข้างบน ตอนนี้ สามารถสร้างไฟลได้ แต่ Select file ยังไม่มาคะ
|
 |
 |
 |
 |
Date :
2014-09-30 14:27:18 |
By :
noony |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ถ้าไม่ได้ คงต้อง หา error เองนะครับ เพราะของผมได้
Code (PHP)
<?php
$dir = "20140918";
$file_to_write = 'LICP2014091800601.text';
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("dea");
$strSQL = "SELECT * FROM dea";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
if( is_dir($dir) === false )
{
mkdir($dir);
}
$file = fopen($dir . '/' . $file_to_write,"w");
while($objResult = mysql_fetch_array($objQuery))
{
$txt .= '"'.$objResult[nameeng].'","'.$objResult[lastnameeng].'","'.$objResult[yod].'"'.PHP_EOL;
}
fwrite($file, $txt);
fclose($file);
include $dir . '/' . $file_to_write;
?>
|
 |
 |
 |
 |
Date :
2014-09-30 14:49:20 |
By :
gaowteen |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอบคุณมากคะ
|
 |
 |
 |
 |
Date :
2014-09-30 15:02:50 |
By :
noony |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|