Good evening --
$userKey=$_POST['Keys'];
$userText=$_POST['msgText'] . " / " . $current_user->display_name;
$return = pg_execute($conn, "SendKeys", array($userKey, $userText, $current_user->display_name));
Which returns and error --
function.pg-execute]: Query failed: ERROR: array value must start with "{" or dimension information in /home/xxxxxxx/public_html/enterkey/cgi-bin/xxxxxxcgi.php on line 90
echo "User Keys " . gettype($userKey)."<br>\n"; confirms this is a Array .. An I have tried casting $1::int[] in the prepare with no luck..
I find a lot of hits on Google searches but no solutions..
Hoping someone here can assist me with this issue..
=============
=============