When two tables are SELECT'ed and they are separated by a comma, it is semantically equivalent of using the "INNER JOIN" syntax in MySQL.
So, what you have here is all the columns of the myauctiont able (aliased as 'o' for less code to write) as well as the username column from the myauction_users table. The two tables were joined together using an INNER JOIN as mentioned above.