The simplest way to make a chat room is first make a page with two frames. One for submitting and one for reading.
First the submit one. In it make a form which posts to a .php script which appends the message to a text file.
Now the message one. Firstly make the message page a .php script that reads the .txt file and displays it. Then add html tags which make the page refresh every 3 or 4 seconds.
Simple as that. I suggest doing it in this order. All the individual things suce as writing to a text file are very easily done and have been explained here in the forum or on php.net
Al