Jump to content

While loop is skiping records


dodgei

Recommended Posts

This loop is skipping every other record. Why is that?

When I sort the records ascending it retrieves the odds. When I sort descending it retrieves the evens.

Here is the code.
[code]<?php

$odbc = odbc_connect ('accounting', 'root', '') or die('Could    Not Connect to ODBC Database!');
$sql = "select * from entry order by EntryID ASC";
  $results = @odbc_exec($odbc, $sql) or die("<tt>problem with $sql : " . odbc_errormsg() . "</tt>\n");

while($r = @odbc_fetch_object($results))
{

  echo $r->EntryID;
  echo "<a href=\"" . $_SERVER['PHP_SELF'] . "?action=delete&row_id=" . $r->EntryID . ">delete</a>\n";
}
odbc_close($odbc);
?>[/code]


Out put is :
1delete 3delete 5delete 7delete 9delete 11delete 13delete 15delete
Link to comment
Share on other sites

[code]
<?php

$odbc = odbc_connect ('accounting', 'root', '') or die('Could    Not Connect to ODBC Database!');
$sql = "select * from entry order by EntryID ASC";
  $results = @odbc_exec($odbc, $sql) or die("<tt>problem with $sql : " . odbc_errormsg() . "</tt>\n");

while($r = @odbc_fetch_object($results))
{

  echo $r->EntryID;
  echo "<a href=\"{$_SERVER['PHP_SELF']}?action=delete&row_id={$r->EntryID}\">delete</a>\n"

}
odbc_close($odbc);
?>[/code]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.