My if ($man == "â") or else If ($man == "¤") doesnt work. Cant php read those symbols?
My question is, how can i check If $man = â or ¤
If i echo 'man = : ' . $man;
It shows â or ¤
echo"<td>";
If ($man == "â"){
print("<img class='sol' src='sad.png'>");
}
else If ($man == "X"){
print("<img class='sol' src='x.png'>");
}
else If ($man == "¤"){
print("<img class='sol' src='sunny.png'>");
}
else
print("<p class='bigtxt'>$man</p>");
echo "</td>\n";