One thing that has always bugged me is that when checking my php scripts for problems I get the warning "bool-assign : Assignment in condition" and I get them a lot. e.g.:
$guests = array();
$sql = "SELECT * FROM `guestlist`";
$result = mysql_query($sql);
while($row = mysql_fetch_assoc($result))
$guests[] = $row['name'];
Bir nesne ya da diziye birden veya tüm satırları almak için farklı bir yolu var mı? Ya da bu yöntem ile yanlış bir şey var mı?