Posts by Bruno Quaresma • 153 points
2 posts
-
0
votes1
answer171
viewsQ: PHP returns an MP3 file
I have a small music application where files are loaded from a URL like "http://www.mymusicapp.com/get_song.php?name=SOME_MUSIC". Locally the application works very well. But when I put it on the…
phpasked Bruno Quaresma 153 -
5
votes1
answer230
viewsQ: PHP says that two equal strings have different lengths
I want to compare two strings but something unusual happens. I have the code: <?php $char = 'Á'; var_dump('Á'); var_dump($char); The variable $char receives 'A' and the result is as follows.…