What is the 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
link|improve this question

74% accept rate
feedback

1 Answer

up vote 4 down vote accepted

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.

link|improve this answer
What do you mean by "search data"? I just want to store a number on the server, that I can retrieve when needed using PHP. – Web_Designer Apr 11 '11 at 23:08
If its just a number, use a .txt file. – Rui Apr 11 '11 at 23:09
By search i mean "select records" (if you had multiple records, of course) – Rui Apr 11 '11 at 23:09
Okay, Thank you! – Web_Designer Apr 11 '11 at 23:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.