Nella mia app voglio mostrare l'immagine del profilo Google+ per un utente. L'unica funzione che ho trovato nell'API per ottenere l'immagine del profilo richiede un ID utente. Tuttavia, ho solo il lor
Questo è il codice $query = mysql_query("SELECT avatar FROM users WHERE UserID = ".$userID."");
$row = mysql_fetch_array($query);
$user_avatar = trim($row['avatar']);
unlink($user_avatar)