What data type will I declare In my function..😕 😕
create function fn_test(data type) returns bool as'
begin
end;
'language 'plpgsql';
One thing more I'm gonna pass an array variable from PHP to my function (I'm using a class) my script looks like this:
$sql="select fn_test($arrayvariable);";
$conn->execute($sql);