|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-05-12 06:05 UTC] derick@php.net
[2003-05-12 06:11 UTC] adrien_comlan at yahoo dot fr
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 07 20:00:01 2025 UTC |
non significant zero are not return with sybase_fetch_ functions ex : decimal(10,2) 14.3 is return instead of 14.30 in database 100 is return instead of 100.00 in database db : ase 11.9.2 os : w2k code $ls_query = "select * from mytable"; $res = sybase_query($ls_query,$cnx); while ($op_by_int = sybase_fetch_array($res)) { while (list( $key, $value ) = each( $op_by_int )) { echo "<br>$key => $value"; } } thanks