What is the difference between php and html file extensions?

后端 未结 10 1670
无人共我
无人共我 2020-12-31 18:20

I am having a .php file with the following code. While I am changing the extension of the file as .html then also it is behaving in the same way. C

10条回答
  •  旧时难觅i
    2020-12-31 18:46

    The filetype is just a way to identify the file, you can't always trust them.

    Depending on your web server configuration, you will see different results.

    .html is generally use just for html with no serverside code.

    .php is used for serverside php code and html if required.

    They can be used for anything, it just depends on the setup.

提交回复
热议问题