Hi.....
I currently have this piece of code which outputs what it should perfectly :
echo ' <a href="javascript: openpopup(\''.$song.'\',\''.$category.'\')">Listen</a>';
echo " $song";
echo " $lexdownload<br>";
What want to do is take away the echo's and add the lines to a variable.... I tried this :
$boxstuff = ' <a href="javascript: openpopup(\''.$song.'\',\''.$category.'\')">Listen</a>';
$boxstuff .= " $song";
$boxstuff .= " $lexdownload<br>";
But it REALLY didnt work, I'm sure all the speech marks etc.. in the strings are getting it confused...
Any idea how I can get the above three strings into the $boxstuff variable???
Thanks
Tab 🙂