|
|
|
ผมใส่ตัว ติดต่อฐานข้อมูล ถูกแล้วแต่ ทำไม มัน ยัง ติดต่อไม่ได้ครับ ช่วยทีคราบ |
|
|
|
|
|
|
|
Code (PHP)
<?
header("Content-Type: text/html; charset=tis620");
header("Content-type: application/vnd.ms-excel");
// header('Content-type: application/csv'); //*** CSV ***//
header("Content-Disposition: attachment; filename=testing.xls");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
<HTML>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title>Tripod Contact Page - Free CSS Templates</title>
<meta name="keywords" content="free css templates, contact, tripod, blog, theme" />
<meta name="description" content="Tripod Contact Info. - free website template provided by templatemo.com" />
<link href="templatemo_style.css" rel="stylesheet" type="text/css" />
<html>
<style type="text/css">
.ddd {
text-align: center;
}
.d {
text-align: center;
}
.d {
text-align: center;
}
.d {
text-align: center;
}
.d {
text-align: center;
}
.d {
text-align: center;
}
.d {
text-align: center;
}
.d {
text-align: center;
}
.d {
text-align: center;
}
</style>
<body>
<?
$host="intra"; // กำหนด host
$username="icts"; // กำหนด username
$pass_word="icts"; // กำหนด Password
$db="icts"; // กำหนดชื่อฐานข้อมูล
$Conn = mysql_connect( $host,$username,$pass_word) or die ("ติดต่อฐานข้อมูลไม่ได้");// ติดต่อฐานข้อมูล
mysql_query("SET NAMESwindows-874");
mysql_query("SET character_set_results=windows-874");
mysql_query("SET character_set_client=windows-874");
mysql_query("SET character_set_connection=windows-874");
?>
<table width="100%" border="1" cellspacing="0" cellpadding="0" align="center">
<tr bgcolor="#999999" align="center">
<th align="center" bgcolor="#CCCCCC" scope="col">บริษัท</th>
<th width="7%" bgcolor="#CCCCCC" scope="col">เลขที่สัญญา</th>
<th bgcolor="#CCCCCC" scope="col">ระยะทาง</th>
<th width="11%" bgcolor="#CCCCCC" scope="col">ระยะเวลาสัญญา</th>
<th width="6%" bgcolor="#CCCCCC" scope="col">รับล่างหน้า</th>
<th width="5%" bgcolor="#CCCCCC" scope="col">ค่าเช่าสถานี</th>
<th width="7%" bgcolor="#CCCCCC" scope="col">ค่าเช่าท่อร้อยสาย</th>
<th colspan="4" bgcolor="#CCCCCC" scope="col">รายได้ค่าเช่าใยเกมนำแสง</th>
<th bgcolor="#CCCCCC" scope="col">รายได้ล่วงหน้าคงเหลือ</th>
</tr>
<?
echo "</body></html>";
if(isset($_GET['keyword'])) {
if(!isset($_GET['field_select'])) {
echo "ต้องเลือกข้อมูลที่จะี่แสดงผลอย่างน้อย 1 อย่าง";
}
else {
$field_search = $_GET['field_search'];
$kw = $_GET['keyword'];
$match = $_GET['match'];
$price = $_GET['tree'];
$field_select = implode(", ", $_GET['field_select']); //รวมให้เป็นสตริงเดียวกันคั่นด้วย ", "
//จัดวางสัญลักษณ์ wildcard ให้สอดคล้องกับตำแหน่งคำที่เลือก
if($match == "part") {
$kw = "%$kw%";
}
else if($match == "start") {
$kw = "$kw%";
}
else if($match == "end") {
$kw = "%$kw";
}
}
}
$sql_show = "SELECT $field_select
FROM people
WHERE ($field_search LIKE '$kw') AND (tree $tree) AND (year $year) ORDER BY people . name ASC " ;
$result_show = mysql_query($sql_show) or die(mysql_error());
while($row_show = mysql_fetch_array($result_show))
{
?>
<tr >
<td rowspan="2" class="d"><?=$row_show['id']?></td>
<td rowspan="2" class="d"><?=$row_show['name']?></td>
<td width="7%"rowspan="2" class="d"><?=$row_show['address']?></td>
<td width="8%"rowspan="2" class="d"> <?=$row_show['rose1']?>
<td width="11%"rowspan="2"><?=$row_show['timerent']?></td>
<td width="6%"rowspan="2"><?=$row_show['advance']?></td>
<td width="7%"rowspan="2"><?=$row_show['stationn']?></td>
<td width="9%"rowspan="2"><?=$row_show['pipe']?></td>
<td bgcolor="#999999"><?=$row_show['mount']?></td>
<td bgcolor="#999999"><?=$row_show['mount2']?></td>
<td bgcolor="#999999"><?=$row_show['mount3']?></td>
<td bgcolor="#999999">รวมรายได้
<?=$row_show['tree']?>
/<?=$row_show['year']?></td>
<td width="15%"rowspan="2"><?=$row_show['outstanding']?></td>
</tr>
<tr>
<td width="2%" height="27" class="d"><?=$row_show['pay1']?></td>
<td width="2%" class="d"><?=$row_show['pay2']?></td>
<td width="3%" class="d"><?=$row_show['pay3']?></td>
<td width="13%"><?=$row_show['pay1']+ $row_show['pay2']+$row_show['pay3']?></td>
</tr>
<?
}
?>
</table>
<p>
<?
mysql_close($objConnect);
?>
</p>
<p> </p>
</body>
</html>
ทำไม ติดต่อ ไม่ได้ หว่าทั่งๆที่ ข้อมูลถูก
Tag : PHP, MySQL, CakePHP
|
ประวัติการแก้ไข 2012-05-31 16:13:29 2012-05-31 16:14:47
|
|
|
|
|
Date :
2012-05-31 16:10:00 |
By :
amanza1225 |
View :
1683 |
Reply :
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Error ว่าอะไรครับ
|
|
|
|
|
Date :
2012-05-31 16:54:29 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พอผม ดึง ลงมาexcel แล้ว มัน เขียนว่า Error Connect to Database แทนที่จะเป็นข้อมูล ไม่มี เตือนว่าผิดตรงไหน
|
|
|
|
|
Date :
2012-06-01 09:39:19 |
By :
amanza1225 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
$host="intra"; // กำหนด host
$username="icts"; // กำหนด username
$pass_word="icts"; // กำหนด Password
$db="icts"; // กำหนดชื่อฐานข้อมูล
$Conn = mysql_connect( $host,$username,$pass_word) or die ("ติดต่อฐานข้อมูลไม่ได้");// ติดต่อฐานข้อมูล
mysql_query("SET NAMESwindows-874");
mysql_query("SET character_set_results=windows-874");
mysql_query("SET character_set_client=windows-874");
mysql_query("SET character_set_connection=windows-874");
?>
<?php
$host = "localhost";
$user = "icts";
$pass = "icts";
$dbname = "icts";
mysql_connect($host,$user,$pass)or die("connect DB ไม่ได้ ตรงนี้ผิด ");
mysql_select_db($dbname)or die(" select DB ชื่อ db ผิด งมหาตรงนี้ ");
mysql_query("set names utf8");
?>
|
|
|
|
|
Date :
2012-06-01 10:22:21 |
By :
Joe_Dev |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
งง คอม เม้น จัง
|
ประวัติการแก้ไข 2012-06-01 11:36:31
|
|
|
|
Date :
2012-06-01 10:55:10 |
By :
amanza1225 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มีใครได้ไหมคราบ ลอง ของคุณ Zhuge liang แล้ว มันก็ไม่ขึ้นเตือน
|
|
|
|
|
Date :
2012-06-01 11:39:45 |
By :
amanza1225 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
$host="127.0.0.1"; // กำหนด host
$username=""; // กำหนด username
$pass_word=""; // กำหนด Password
$db=""; // กำหนดชื่อฐานข้อมูล
$Conn = mysql_connect($host, $username, $pass_word) or die ("ติดต่อฐานข้อมูลไม่ได้");// ติดต่อฐานข้อมูล
mysql_select_db($db)or die(" select DB ชื่อ db ผิด งมหาตรงนี้ ");
mysql_query("set names utf8");
mysql_query("SET NAMESwindows-874");
mysql_query("SET character_set_results=windows-874");
mysql_query("SET character_set_client=windows-874");
mysql_query("SET character_set_connection=windows-874");
?>
ลองเอาไปใส่แทนของเก่าดู ได้ป่าว
ถ้าไม่ได้ก็ต้องขออภัยด้วย
|
|
|
|
|
Date :
2012-06-01 14:21:19 |
By :
บังเอิญผ่านมาเห็น |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอดันนิสนุง
|
|
|
|
|
Date :
2012-06-07 09:14:16 |
By :
amanza1225 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พี่ mr.win ไปไหนหว่า
|
|
|
|
|
Date :
2012-06-07 10:12:26 |
By :
amanza1225 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยังติดอะไรอีกครับ
|
|
|
|
|
Date :
2012-06-07 11:16:57 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คือผมจะทำออก report แต่มันขึ้น ว่า Error Connect to Database ในโปรแกรม excel ไม่มีข้อมูลที่เรียกออกมาครับ
|
|
|
|
|
Date :
2012-06-07 13:33:04 |
By :
amanza1225 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมทำใน เครื่อง ใช้ แอปเซิฟ ใช้งานได้ปกติแต่พอ อับขึ้นโฮส ข้อมูลไม่ออก มันขึ้น Error Connect to Database ในช่อง A1 ของexcel
|
|
|
|
|
Date :
2012-06-07 13:34:41 |
By :
amanza1225 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองใส่ตรง mysql_connect เป็น or die(mysql_error()); จะได้รู้ว่า error เพราะอะไรครับ
|
|
|
|
|
Date :
2012-06-07 13:40:34 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
code ข้าง บนผมใส่แล้ว อาๅ = ="
|
|
|
|
|
Date :
2012-06-07 13:43:59 |
By :
amanza1225 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|