I make a general conclusion while from 2 tables, and it is necessary to add a limit to each table in the output. For example, users = LIMIT 1, podarok = LIMIT 4, etc.? How to do it right? My sql:
SELECT `users`.id AS users_id, `podarok`.you_id AS podarok_id ,`users`.* FROM `users` , `podarok` WHERE `users`.id = '".intval($my_id)."' AND `podarok`.you_id = `users`.id