HTML interesse |
|
Ik bereken hoeveel reacties er zijn op een bapaald artikel zo:
<?php
$select12 = "SELECT * FROM artikelenreacties WHERE artikel_id = '".$artikelen_id."'";
$query12 = mysql_query($select12)or die(mysql_error());
$aantal12 = mysql_num_rows($query12);
$list12 = mysql_fetch_object($query12);
if($aantal12 = "1")
{
$reacties = "".$aantal12." Reactie";
}
else
{
$reacties = "".$aantal12." Reacties";
}
<?php $select12 = "SELECT * FROM artikelenreacties WHERE artikel_id = '".$artikelen_id."'"; if($aantal12 = "1") { $reacties = "".$aantal12." Reactie"; } else { $reacties = "".$aantal12." Reacties"; }
Maar hij wilt niet mee.. er zijn 2reacties maar zegt altijd "1 Reactie"
|