협조에 감사드립니다. 저도 않될리가 없다고 생각했는데,
하지만 안되던군요.. 하는수 없이
다른 형태로 연결에 성공하여서 보여드립니다.
1.connection.php3의 내용입니다.
<?php
$connection = pg_connect("dbname=guest_pg user=nobody port=5432")
or die ("데이타서버에 접속할수 없습니다.");
?>
2.index.html의 내용입니다. http://localhost 접속시 바로 보기위하여 설정함.
<HTML>
<HEAD><TITLE>Window name</TITLE></HEAD>
<BODY>
<br><p><CENTER><h1>Title</h1></CENTER>
<br><p>
<? include("connection.php3"); ?>
<?
$que1 ="select id,comment,name,email,ip from guestbook order by id DESC " ;
$result = pg_exec($connection, $que1);
$total = pg_NumRows($result);
?>
<table border=1>
<tr><th>ip</th><th>name</th><th>email</th><th>comment</th></tr>
<? $i=0 ;?>
<? while ($i<$total) :?>
<tr>
<td><? echo pg_Result($result,$i,"ip") ;?></td>
<td><? echo pg_Result($result,$i,"name") ;?></td>
<td><? echo pg_Result($result,$i,"email") ;?></td>
<td width='541'><? echo pg_Result($result,$i,"comment") ;?></td>
</tr>
<? $i++ ;?>
<? endwhile ;?>
</table>
</body>
</html>
간단히 이렇게 함으로 화면에 보여집니다.
물론 오류도 있지만..
|