If i simplify a code that collects a database value and stores it as a variable, will this still work? (I have already connected to the database)
$Record = mysql_fetch_row(mysql_query("SELECT ScreenName FROM Register WHERE Username = $Username"));
$ScreenName = $Record[0];