When im outputting html which contains php vars & functions I always use ' rather than \" .. anybody know of any reason not to use ' e.g. browser / platform problems...
Code Example :
echo "<a href='index.php?page=$page'>";
rather than
echo "<a href=\"index.php?page=$page\">";
I definately preffer ' to \"
Cheers