Bu ne yanlış? In kod $ forwardformat boş boş değil, ama $ forwardformat boş ise "else" kod çalıştırın değilse "ifadesi ise" çalışır. Herhangi bir fikir?
while ($row = mysql_fetch_array($forwardresult)) {
$forward = $row["id"];
$forwardformat = str_replace(" ","",$forward);
if (!empty($forwardformat)) {
echo 'Exploring moves us <a href="casestudy.php?id=';
echo $forwardformat;
echo '">forward</a>';
}
else {
echo "forward";
}
}