 |
|
PG_Connect ครับ
Code (PHP)
<?php
$conn_string = "host=11.111.111.1 port=5000 dbname=bbb user= password= ";
$connection = pg_connect($conn_string) or die("connection failed");
$query = "select * from item";
$result = pg_query($query);
if (!$result) {
echo "Problem with query " . $query . "<br/>";
echo pg_last_error();
exit();
}
header('Expires: 0');
header('Cache-control: private');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Content-Description: File Transfer');
header('Content-Type: text/plain');
header('Content-disposition: attachment; filename="data.txt"');
while ($row = pg_fetch_assoc($result)) {
print($row['item'] . "," . trim($row['item']) . "," . trim($row['description']) . "\n");
}
?>
ที่ทำไปแล้วคือ
php.ini
uncommented, extension=php_pdo_pgsql.dll,
uncommented, extension=php_pgsql.dll,
uncommented, extension_dir = "C:\AppServ\php5\ext",
ใน C:\AppServ\php5\ext มี php_pgsql.dll
และใน
C:\Windows\System32\ มี libpq.dll
ตอนนี้งงมากครับ ทดลองมาหลาย ๆ Code แล้วก็ไม่สำเร็จ พี่ ๆ ช่วยด้วยครับ
Tag : PHP, Windows
|
ประวัติการแก้ไข 2014-01-29 07:56:01 2014-01-29 07:56:29
|
 |
 |
 |
 |
Date :
2014-01-29 07:56:03 |
By :
TotEcom |
View :
1767 |
Reply :
4 |
|
 |
 |
 |
 |
|
|
|
 |