Looking for some assistance / guidance --

Поиск
Список
Период
Сортировка
От Jeff Silberberg
Тема Looking for some assistance / guidance --
Дата
Msg-id CALWasQ=LmiZsZdJ1sLUT4jWrULSOLNsGS298yLkafKbEppbEHQ@mail.gmail.com
обсуждение исходный текст
Ответы Re: Looking for some assistance / guidance --
Re: Looking for some assistance / guidance --
Список pgsql-php
Good evening --

I have a Wordpress / HTML form that includes <select size="5" multiple name=Keys[]"....>

The form calls a PHP CGI program and if I set it to phpinfo()  I see that the array Keys is in the post data.  An I can do a $selectedKeys = $_POST('Keys')  and walk through and echo out the array elements without a problem. 

My issues start when I attempt to pass the array of Keys to my PostgreSql function with a parameter list of (web_Keys_ integer[], web_text_ text, web_user_ text) ................

in my php I do a pg_connect, and then prepare a number of statements all of which work but the last one. 

    it is $return_cde = pg_prepare($conn, "SendKeys", 'select web.sendKeys$1, $2, $3)');. 

   and I try to execute this with

      $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..

=============


В списке pgsql-php по дате отправления:

Предыдущее
От: Vincent
Дата:
Сообщение: Re: html display images without intermediate file
Следующее
От: Matthias Ritzkowski
Дата:
Сообщение: Re: Looking for some assistance / guidance --