Create table with PHP and populate from MySQL

后端 未结 3 586
陌清茗
陌清茗 2020-12-01 09:44

I am creating a table to display on a web page and that table is populated from data in a MySQL database. I am trying to do a couple of things that are making it difficult

3条回答
  •  醉话见心
    2020-12-01 10:36

    The reason your code is not executing is that you cannot include PHP with the Script tag. You must use PHP's include function, and the original page must be parsed as PHP.

    
    

提交回复
热议问题