On Thu, 13 Jun 2002 [EMAIL PROTECTED] wrote: > i have just finished creating a function that has an array of integers as its > parameter. what i would like to know is how do i declare/execute my function > in php. i tried several syntax > e.g. > $arrvalue - an array of integers > > $strquery = "select functionname($arrvalue)"; > $strquery = "select functionname($arrvalue[])";
If you wanna do a select i think is safe to construct the select statement as a string (including your arrays). E.g. $strquery = "select func('{1,2,3,4}')"; Now if your function outputs an array, thats a little bit more complicated lies in the php field and you need to ask pgsql-php or something like that. > > what is the right syntax > TIA > joseph > > ---------------------------(end of broadcast)--------------------------- > TIP 4: Don't 'kill -9' the postmaster > -- Achilleus Mantzios S/W Engineer IT dept Dynacom Tankers Mngmt tel: +30-10-8981112 fax: +30-10-8981877 email: [EMAIL PROTECTED] [EMAIL PROTECTED] ---------------------------(end of broadcast)--------------------------- TIP 2: you can get off all lists at once with the unregister command (send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])