In PHP the correct query should be:
PHP Code:
$getusers = $DB_site->query("
SELECT user.userid,username
FROM " . TABLE_PREFIX . "user AS user
LEFT JOIN " . TABLE_PREFIX . "subscriptionlog as subscriptionlog ON (subscriptionlog.userid = user.userid)
WHERE subscriptionlog.status = '1' ORDER BY regdate DESC LIMIT 10
");
PS I always use a table prefix on my testsite, tou avoid this kind of problems.