|
-
Dec 5th, 2003, 02:23 PM
#1
Thread Starter
New Member
odbc_fetch_row($...))
PHP Code:
...
while (odbc_fetch_row($rec)) {
$str1 = $str1.odbc_result($rec, "Id");
}
while (odbc_fetch_row($rec)) {
$str2 = $str2.odbc_result($rec, "Id");
}
$str1 = "1234", and is correct!
$str2 = ""
How can I use more times odbc_fetch_row() for the same recordset (to have $str2 = "1234" too) ?
-
Dec 7th, 2003, 05:08 PM
#2
Why would you want to? It's slow, making so many roundtrips to the database, even if only for fetching data. Just do str2 = str1.
There might be a reset function.
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|