Forum Moderators: coopster
This is what I have - does anyone see anything obviously wrong?
"select m_widget2.Description, m_widget.ThumbNailImage, m_widget.SKU, m_widget.Price
from m_widget left join m_widget2
on m_widget.SKU = m_widget2.SKU"
Thanks
$aWidget = mysql_fetch_assoc( $aQuery );
1.) I like to create and use aliases on the tables, and put the reserved words in CAPITALS to make it easier to look and ts the query.
2.) Did you query first?
3.) mysql_fetch_assoc is more effective of a call - less data transmitted.