I'm trying to concatenate some href
with my fetched value form my DB. But I got lost in '' . "" \
I'm sure I'm missing something small but I just can't see it.
while ($row = $result->fetch_assoc()) {
echo "<tr>";
echo."<td>" . $row["interest"] . "</td>"
."<td>"."<a href=\"http://localhost/page/files/".$row["filename"]\"/>" . $row["filename"] . " </a></td>"
."<td>" . $row["reg_date"] . "</td>";
}