I have DB with Url's. For example, my url is
https://besplatka.ua/?prop[161][from]=1&prop[161][to]=3&prop[136][to]=20000¤cy=USD
When i use this PHP code
$result = mysqli_query($mysqli, "SELECT url FROM urls WHERE id=5");
while($res = mysqli_fetch_array($result))
{
$my_url=$res['url'];
}
echo $my_url;
I see that the php page does not display the correct value. Encoding everywhere is UTF-8.
https://besplatka.ua/?prop[161][from]=1&prop[161][to]=3&prop[136][to]=20000¤cy=USD
What does this symbol ¤ mean? How do I fix the error?