I have a code in html that allow me to get string with a space in between such as "Play game".
In html:
<li><a href="allProduct.php?category=Play Game">Play Game</a></li>
But I couldn't do so in echo(), I only managed to get the word "play":
echo("<table width=80%>
<tr>
<ul>
<li><a href="allProduct.php?category=Play Game">Play Game</a</li>
</ul>
</tr>");