Serve multiple pages from 1 PHP file?

前端 未结 5 1293
失恋的感觉
失恋的感觉 2021-01-19 15:23

So basically i am struggling with the need of optimizing my code for some project of mine. Currently i have pages like add_company.php, view_company.php

5条回答
  •  自闭症患者
    2021-01-19 15:56

    You could use POST instead of GET with index.php:

    
    

    This would hide the action type from the user, acting as though it is a single page. However, it may require using a form in your navigation as opposed to linking direct to "company.php?action=edit".

提交回复
热议问题