Forum Moderators: coopster
SELECT
b2b_offers.sb_title as offertitle,
b2b_offers.sb_postedon as dateposted,
b2b_country.country as country,
b2b_country.id country
FROM
b2b_offers
Inner Join b2b_members ON b2b_members.sb_id = b2b_offers.sb_uid
Inner Join b2b_country ON b2b_country.id = b2b_members.sb_country
WHERE
b2b_offers.sb_approved = 'yes'
ORDER BY
b2b_offers.sb_postedon DESC
LIMIT 0, 15
This is what i got in my php file :
mysql_fetch_array(): supplied argument is not a valid MySQL result resource
Thanks for any suggestion
Hanyaz