Results 1 to 2 of 2

Thread: odbc_fetch_row($...))

  1. #1

    Thread Starter
    New Member
    Join Date
    Dec 2003
    Posts
    1

    Question 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) ?

  2. #2
    Kitten CornedBee's Avatar
    Join Date
    Aug 2001
    Location
    In a microchip!
    Posts
    11,594
    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
  •  



Click Here to Expand Forum to Full Width