vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hi. I would want do a php script to access my postgres database from remote host. I would like to know how I can do. Particularly, I would to know the default directory where my database is located so that to be able to call it with my php script. ---------------------------(end of broadcast)--------------------------- TIP 5: don't forget to increase your free space map settings |
| |||
| Paolo Ditto <paolo_ditto@libero.it> schrieb: > Hi. > I would want do a php script to access my postgres database from > remote host. I would like to know how I can do. Particularly, I would 1. you database must listen on TCP/IP and 2. the remote host needs privileges to connect to the DB Read http://www.postgresql.org/docs/curre...ntication.html 3. with php, you connect to the db: $db = pg_connect("host=server dbname=database user=db_user"); $result = pg_exec($db, $sql); There are any other functions like pg_numrows($result), pg_fetch_array($result, $i) and so on. Read the PHP-Doku. > to know the default directory where my database is located so that to > be able to call it with my php script. Oh no, wrong. Access to the db with the php-functions, not directly in the data directorys. HTH, Andreas -- Really, I'm not out to destroy Microsoft. That will just be a completely unintentional side effect. (Linus Torvalds) "If I was god, I would recompile penguin with --enable-fly." (unknow) Kaufbach, Saxony, Germany, Europe. N 51.05082°, E 13.56889° ---------------------------(end of broadcast)--------------------------- TIP 5: don't forget to increase your free space map settings |
| ||||
| On 28 Jan 2006 at 17:38, Paolo Ditto wrote: > I would want do a php script to access my postgres database from > remote host. I would like to know how I can do. Particularly, I would Are you looking for an administration tool? If so, have a look at phpPgAdmin: http://phppgadmin.sourceforge.net/ --Ray. ------------------------------------------------------------- Raymond O'Donnell http://www.galwaycathedral.org/recitals rod@iol.ie Galway Cathedral Recitals ------------------------------------------------------------- ---------------------------(end of broadcast)--------------------------- TIP 6: explain analyze is your friend |