i am having some trouble buildign links that have url variables.
i am trying to build a link that looks like this:
<a href="deleteItem.php?id=7">X</a>
i am using the following code:
echo("<a href='deleteItem.php?id=".$id."'>X</a>")
but the browser renders the link as:
<a href='deleteItem~id~4.php'>X</a>
what am i doing wrong??