<?
$dbconn = pg_connect("host=192.168.0.35 dbname=postgres user=postgres password=1234") or die('Could not connect');
$query = "select * from test";
$result = pg_exec($dbconn, $query);
while($records=pg_fetch_array($result)){
echo "id: ".$records['id']." /name: ".iconv("UTF-8","EUC-KR",$records["name"])." /test: ".$records["test"];
}
?>
'Language > PHP' 카테고리의 다른 글
ffmpeg-php 설치 (0) | 2012.07.18 |
---|---|
PHP 환경변수 변경 (GDAL_DATA) (0) | 2012.07.05 |
MySQL 연동 (환경설정; php.ini) (0) | 2012.07.05 |
윈도우 Server 의 경우, 쌍따옴표에 \가 삽입된 것을 제거 (0) | 2012.07.05 |