我想知道是否有一种更简单的方法可以将所有不同的列分配给一个变量。我有超过 70 个来检查用户是否获得了特定的歌曲。这是代码的缩短版本。我还没有完成所有的歌曲,我想知道是否有更简单的方法。
$results = mysqli_query($con,"Select * FROM users WHERE user_name ='$username'");
while ($row = mysqli_fetch_array($results))
{
$userpoints = $row['points'];
$intro = $row['intro'];
$fightingfires = $row['fightingfires'];
$may = $row['may'];
$crowdedstreet = $row['crowdedstreet'];
}