View Single Post
  #5 (permalink)  
Old 09-28-2006, 11:39 AM
CraigB CraigB is offline
WebProWorld New Member
 
Join Date: May 2005
Location: Escondido, CA
Posts: 5
CraigB RepRank 0
Default Got it w/ SQL aliases

The solution:
Code:
$query_QUERY1 = "SELECT O.order_id, O.SKU, I2.misc3 as misc3a, ..."
and

Code:
<td><?php echo $row_QUERY1['misc3a']; ?></td>
repeat as needed.

Thanks for the input! I've been approaching this for way toooo long.

Craig
Reply With Quote