View Single Post
  #4 (permalink)  
Old 09-28-2006, 10:33 AM
wige's Avatar
wige wige is online now
Moderator
WebProWorld Moderator
 
Join Date: Jun 2006
Location: United States
Posts: 2,659
wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9
Default

Might this be the problem? Rather than it returning the same thing, I think you might be displaying the same field twice.
Code:
<td><?php echo $row_QUERY1['order_id']; ?></td> 
<td><?php echo $row_QUERY1['SKU']; ?></td> 
<td><?php echo $row_QUERY1['misc3']; ?></td> 
<td><?php echo $row_QUERY1['misc3']; ?></td> 
<td><?php echo $row_QUERY1['quantity']; ?></td> 
<td><?php echo $row_QUERY1['date_placed']; ?></td>
At the end of each of the do loops, you can add the following code which will output the exact contents of the query response:
Code:
echo '<!-- ';
print_r($row_QUERY1);
echo ' -->';
__________________
The best way to learn anything, is to question everything.
Reply With Quote