|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-06-14 13:31 UTC] kalowsky@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 03 21:00:01 2025 UTC |
I'm wondering why code like this one: $conn = odbc_pconnect("$database", "$username", "$password"); $query = "select name from table"; $a=$query; $table = odbc_do($conn,$query); echo $query; odbc_fetch_row($table); echo odbc_result($table,1); work but if I comment out $a=query, echo $query or thing that should not make any difference it's not. It's not a test-suite (i'll send it as fast as I would get it). There's probably bug in odbc_fetch_row as all problems that I had were connected with it.