开发者

Best way to store serverside data?

开发者 https://www.devze.com 2023-02-24 03:21 出处:网络
What is t开发者_高级运维he best way to store data on the server, that can be updated using PHP?

What is t开发者_高级运维he best way to store data on the server, that can be updated using PHP?

In my case I am storing a number. Should I use:

  • MySQL table
  • .TXT document


If you don't need to search, update and order data, you can use a .txt file.... but if you need to query data, i highly recommend a database (MySQL for example).

If you store just one number, you can do it using a .txt file.

0

精彩评论

暂无评论...
验证码 换一张
取 消