Pull all data for specific username in DB table [duplicate]

I have a mysql DB table called ‘user_order_token’ with the values

`id`, `username`, `token_value`, `token_amount`, `amount`, `reminder_status`, `amount_received`, `address`, `network`, `label`, `status`, `created_by`, `created_at`, `updated_by`, `updated_at

I am trying to pull the values for the user who is logged in, but i cant even pull data for a static user “test”.

<?php 
$data = mysql_query("SELECT * 
                    FROM 'user_order_token' 
                    WHERE 'username' ='test'"); 
$info = mysql_fetch_array( $data );
?>


My Stakes

<?php echo $info; ?>

Currently the code above hides “My Stakes” and dont seem to be pulling any information from my DB, what am i doing wrong! 🙁