How to get rid of extra line breaks on top of table created with PHP?

前端 未结 1 975
离开以前
离开以前 2021-01-28 08:25

I am just starting coding in PHP. I am experiencing a problem that I am not able to solve with any solution I found on the net.

I am trying to show a table with the thre

1条回答
  •  半阙折子戏
    2021-01-28 09:30

    Just remove your
    after the in this part of code :

        echo '';
            echo '' . $row_hour[0] . '' ; //hour when the thread was created
            echo '' . $row_title[0] . '' ; //title of the thread
            echo '' . $row_author[0] . '' ; //author of the thread
        echo '';
    

    Because
    is not available in

    structure, and the browser show them before.

    0 讨论(0)
    提交回复
    热议问题