Se vuoi mantenere questa struttura
devi fare così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']");
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