I am using a cron job to get the users tweets etc and we are saving it in a text file. Now when the user visits the site we need to show these contents. Which of the following is better?
- Curl or file_get_contents()
I researched a lot on this and found that curl is better over FGC. but all of them are for external domains. What we need is the answer for same domain.
Also can you suggest a better way for doing this? than saving it as a text file and presenting to users? Will it be more effective if we create an extra DB table for these sort of contents?