Jump to content

Recommended Posts

Posted

Hi! i got somet doubt's... heres my code:

 

 

function __construct(){

$strconn = "host= ?????? port=5432 user=XX password=XX dbname=XX";

$this->db = pg_connect($strconn);

}

 

 

what should i put on host = ?!!!

 

 

help please..

 

thanks

Posted

i tried host=stevie.heliohost.org . and it seems it work...

 

but now i got another problem:

 

Warning: pg_query() [function.pg-query]: Query failed: ERROR: relation "gpss" does not exist in /home/gpss2009/public_html/_classes/Banco.php on line 16

 

Warning: pg_fetch_assoc() expects parameter 1 to be resource, boolean given in /home/gpss2009/public_html/_classes/info.php on line 12

 

 

got this error messages, any help? :S

 

 

Code:

 

Banco.php line 16 error:

 

function Query($sql){

$exec = pg_query($this->db, $sql);

return $exec;

}

 

info.php line 12 error:

 

$rs = $db->Query("select id_gpss, latitude from GPSS");

 

$row = pg_fetch_assoc($rs);

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...