|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-08-28 11:46 UTC] jani@php.net
[2007-09-01 09:42 UTC] nlopess@php.net
[2020-02-07 06:10 UTC] phpdocbot@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 19 16:00:01 2025 UTC |
Description: ------------ mistake in PHP example: en/reference/ifx/functions/ifx-query.xml file: en/reference/ifx/functions/ifx-query.xml ... $res_id = ifx_query("select * from orders", $conn_id); if (! $res_id) { printf("Can't select orders : %s\n<br />%s<br />\n", ifx_error()); ifx_errormsg(); die; // printf(): Too few arguments // unexpected ');' after 'ifx_error()' Expected result: ---------------- $res_id = ifx_query("select * from orders", $conn_id); if (! $res_id) { printf("Can't select orders : %s\n<br />%s<br />\n", ifx_error(), ifx_errormsg()); die;