ok, first: what do you mean by "last three"? added latest?
keeping in mind that records are not stored in any particular order, you'd then need a column to store the timestamp when a record is added (does not have to be a unix-style timestamp).
then you can easily order by that column, and limit to 3 recordsets (note that LIMIT always goes after ORDER BY).