Ocurrio un error conectando a la base de datos: .

"; } else { //$conn = pg_connect(POSTGIS_CS); $conn=pg_connect(POSTGIS_CS); $t=time(); $s="select usuario,maxtime from user_table where not usuario='$userid'"; $r=pg_query($conn,$s); if ($r) { $q=""; while ($row = pg_fetch_array($r, NULL, PGSQL_ASSOC)) { $s="select usuario,maxtime from user_table where not userid='$userid'"; $userid=$row['usuario']; $max_t=$row['maxtime']; //echo $userid." time".$t." and maxtime ".$max_t; if ($t>$row['maxtime']) { $q.="delete from user_table where usuario='$userid';"; $q.="delete from user_points where userid='$userid';"; $q.="delete from test_csvimportpk where userid='$userid';"; } } //echo $q; $r=pg_exec($conn,$q); } } ?>