|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1999-08-01 16:29 UTC] danny at cvs dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 20:00:01 2025 UTC |
I'm user of informix IDS7.3-LE with RedHat6.0 I can't get the result of "IFX_NUM_ROWS" Following code is my example PHP code. ------------------------------------------ <? $conn_id = ifx_connect("sotres7@linux","informix","******"); $query = "select * from customer"; $res_id = ifx_query($query,$conn_id); $rowcount = ifx_num_rows($res_id); echo($rowcount); ?> -------------------------------------------- What's wrong? I can't right result of ifx_num_rows. Please teach me.