I plan to create a small chat room for my friends at my University. As I don't want to invest any money, I will use a free host which doesn't allow me to install an IRC server.Also I like using ajax and PHP as I already know them.
Is a self-refreshing ajax and PHP page a good idea? like each second, the ajax triggers a PHP script which returns latest, let's say 20 MySQL entries in the chat history.
When a user writes something, it is inserted in the MySQL DB, as you probably already figured out.
Is this a good idea?
Do you have any other idea for saving the messages? something more optimized than MySQL?
Or any totally different idea that could fulfill my purpose?
Thanks in advance!
andy :)
EDIT: what is better: MySQL DB or text file? (text file is preferred by jquery, why?)