I'm working on a PHP code that runs a query on my PostgreSQL database:
$insert = pg_query($pg_conn,
"INSERT INTO kullanicilar(id, u_name, u_firstname, u_lastname, register_date, gold, exp, play_times, level)
VALUES($k_id, '$u_name', '$u_firstname', '$u_lastname', 'NOW()', 0, 0, 0, 1);"
);
if ($insert) {
echo 'Insert succeeded.';
} else {
echo 'An error occurs when inserting';
}
I'm getting An error occurs when inserting message every time. What's wrong with my code?
-Edit- (Details)
I'm using Heroku Postgres. My variables' definitions are like this;
$k_id = intval($basic['id']); //int
$u_name = $basic['name']; //string
$u_firstname = $basic['first_name']; //string
$u_lastname = $basic['last_name']; //string
Here is a part of my heroku log:
PHP Warning: pg_pconnect(): Unable to connect to Postg
reSQL server: could not connect to server: Connection refused\n\tIs the server r
unning on host "-----.amazonaws.com" and accepting\n\tTCP/
IP connections on port 5432? in /app/www/index.php on line 91, referer: http://a
pps.facebook.com/---/
PHP Warning: pg_last_error() expects parameter 1 to be
resource, boolean given in /app/www/index.php on line 119, referer: http://apps
.facebook.com/---/
PHP Warning: pg_num_rows() expects parameter 1 to be r
esource, null given in /app/www/index.php on line 106, referer: http://apps.face
book.com/---/
PHP Warning: pg_query() expects parameter 1 to be reso
urce, boolean given in /app/www/index.php on line 107, referer: http://apps.face
book.com/---/
PHP Warning: pg_last_error(): No PostgreSQL link opene
d yet in /app/www/index.php on line 111, referer: http://apps.facebook.com/---/
PHP Warning: pg_query() expects parameter 1 to be reso
urce, boolean given in /app/www/index.php on line 98, referer: http://apps.faceb
ook.com/---/
pg_query_params ($pg_conn, $myquery , x ). Thanks. – Mehmet Emin Acar Jan 8 at 8:09