Your query is like:
select a.column, b.columnz from table a inner join table b on a.key = b.key
So when you get the result like:
column columnz
xxxxx yyyyyy
So your PHP
<?php echo $row["f.roundID"]?>"><?php echo $row["f.roundID"]?>
should be in this way:
<?php echo $row["roundID"]?>"><?php echo $row["roundID"]?>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…