First of all, use the query_first() method instead of query() and then fetch_array(), since you are only getting one row of data.
Anyway, what you get (that long number) is in Unix Timestamp, and needs to be converted. Use:
Code:
$userlastvisit = vbdate("FORMAT", $user['lastvisit']);
FORMAT is the format of the date / time, see the manual entry for date() for more info.