eddy556 Posted November 3, 2007 Share Posted November 3, 2007 Hi, I've got a webserver running with PHP which serves media files using links. In order to allow the file to be embedded on the page I have used this link echo "<a href='embed.php?mp3=$filename&name=$file' onClick='return popup(this, \"notes\")'><img src='stream.gif' alt='Stream this song' width='14' height='14' border='0'></a>"; I have no idea how to get around this. Is it something to do with HTMLENTITIES()?? Thanks :-) Link to comment https://forums.phpfreaks.com/topic/75896-problem-with-the-symbol/ Share on other sites More sharing options...
ignace Posted November 3, 2007 Share Posted November 3, 2007 have you tried the & sign? printf("<a href='embed.php?mp3=%s&name=%s' onClick='return popup(this, \"notes\")'><img src='stream.gif' alt='Stream this song' width='14' height='14' border='0'>", $filename, $file); Link to comment https://forums.phpfreaks.com/topic/75896-problem-with-the-symbol/#findComment-384117 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.