I have this SQL query
$sql_ = "SELECT score FROM users WHERE username=$row['uid']";
Every user in the table users has a score value and a username. $row['uid']
is a variable from a previous SQL statement, this query is giving me an error, how would I fix this, also how would I get that score value into a single variable?