You need to escape the double quotes around the url since you are also using double quotes around the entire string. You escape the quotes using a backslash character like this:
PHP Code:
print("<td><a href=\"add_report.php?gameid=". $Row['gameid'] . "\"> Test </a></td>");
|