Se vuoi mantenere questa struttura
Codice PHP:
$query mysql_query("select * from login");
$row mysql_fetch_array($query);
$row['username_login']; //questa non fa niente
$row['passwird_login']; //questa non fa niente

Print("$user");
Print(
"$row['username_login']"); 
devi fare così
Codice PHP:
$query mysql_query("select * from login");
$row mysql_fetch_array($query);

Print(
"$user");
Print(
"$row[0]['username_login']"); // stamperà il campo username_login del primo record trovato