What's wrong with this?

Поиск
Список
Период
Сортировка
От John Poltorak
Тема What's wrong with this?
Дата
Msg-id 20010121235003.W85@eyup.org
обсуждение исходный текст
Ответы Re: What's wrong with this?
Список pgsql-novice
I'm trying to get a few lines of PHP working which a couple of
people have kindly provided and I can't get it to work.


Here's all it consists of:-

<HTML>
<HEAD>
<TITLE>pg_test</TITLE>
</HEAD>
<BODY>
<?

$connectid = pg_connect("194.164.53.200", "5432", "postgres");

$query = "SELECT townName FROM towns";

$result = pg_exec($connectid, $query);

$row = pg_fetch_array($result,$row);

print($row["townName"]);


?>


If I use a numeric constant, as in:-

print($row[0]);

it works.

Any ideas on what is missing here?

BTW this PHP script should be runnable by anyone on the Internet.

Maybe the problem is due to cross-platform issues...


--
John


В списке pgsql-novice по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Index on function referring other table
Следующее
От: Chris
Дата:
Сообщение: Re: What's wrong with this?