Click to See Complete Forum and Search --> : Need help with PHP and PostgreSql


theMatrix
04-30-2001, 11:56 AM
Hello all,

I'm involved in a project about translating Linux docs to my home language.
I though about create a postgre database for holding the translation of some terms. The database has only one table with two text fields: the original word and its translation.

As I have Apache running on my machine, I though about doing some PHP pages for adding and consulting the database, without needing to call psql and using SQL.

Problem: I'm very new with PHP and don't know how to do it... :(

Can anyone give me some help with this?

Thanks in advance...

klamath
05-08-2001, 01:45 AM
Use the API here: http://php.net/manual/en/ref.pgsql.php

It's pretty easy -- you don't use psql, but you do use SQL (duh, it's an SQL RDBMS after all).

Post if you have any specific problems.

theMatrix
05-08-2001, 09:47 AM
Thanks...

I'll take a look at it...