| From: | Chris <csmith(at)squiz(dot)net> |
|---|---|
| To: | John Poltorak <jp(at)eyup(dot)org>, pgsql-novice(at)postgresql(dot)org |
| Subject: | Re: What's wrong with this? |
| Date: | 2001-01-22 00:10:40 |
| Message-ID: | 4.3.2.7.2.20010122110415.00bc23a0@203.25.173.1 |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | 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:-
>
><? $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
I don't think you need the quotes around the fieldname -
print($row[townName]);
or try single quotes - print($row['townName']);
its not a cross-platform thing, its a php syntax thing.
HTH
------------------------
Chris Smith
http://www.squiz.net
| From | Date | Subject | |
|---|---|---|---|
| Next Message | John Poltorak | 2001-01-22 01:31:16 | What's wrong with this? (Pt II) |
| Previous Message | John Poltorak | 2001-01-21 23:50:03 | What's wrong with this? |