ASPit - Totally ASP JSit - Totally JavaScript
Search PHPit

Use this textbox to search for articles on PHPit. Seperate keywords with a space.

Advertisements

Creating a chat script with PHP and Ajax, Part 1

(Page 1 out of 4)

Introduction

In this multi-part tutorial series I will show you how to create your own chat script with PHP and Ajax. You've probably heard of Ajax before, and what it exactly is, but in case you haven't, read the following two tutorials to learn more about Ajax: "Mastering Ajax, Part 1: Introduction to Ajax" and "Getting started with Ajax".

Another JavaScript library we'll be using is the Prototype library, which includes many useful JavaScript functions and comes with inbuilt Ajax support. If you want to know more about this library, have a look at the following tutorial: "Using prototype.js v1.3.1".

In this first part of the series I will show you how to create a really basic chat script, and nothing more. In the next parts we'll be adding more features, eventually creating a really robust and powerful chat script.

How it works

Our chat script will consist of two parts: a server and a client.

The client is used by your visitors, and doesn't contain any PHP at all. The client must do all the data sending. Every time the user wants to send a new message, the client must send this data (using Ajax) to the server. The client must also check for new messages on the server, again using an Ajax request.

The server only has to add a new message or send a list of messages to the client, and it doesn't have to use any HTML or JavaScript at all. It's strictly PHP. I've added a simple diagram below to show what I've just described:

Diagram

Next: Creating the server »



19 Responses to “Creating a chat script with PHP and Ajax, Part 1”

  1. nobody Says:

    this script is shit, i’ve been trying to make it work but still “undefined error” … learn to code in register global @ off, make it work and give a .zip of your “working” chat and we will see.

  2. Dennis Pallett Says:

    I always code with auto_globals off, and my error reporting is set to E_ALL & E_STRICT. The ‘undefined error’ you’re seeing is probably a JS error, which has absolutely nothing to do with ‘globals’.

    Secondly, the script does work, and all the parts can already be downloaded, including the chatserver PHP script.

  3. Will Says:

    I like how your name is nobody, would you like to add that you know nothing? I would just to save us all some time. At the very least you could exhibit some resemblance of respect for a person providing knowledge to the community.

  4. Todd Says:

    I’ve parsed through this code many times but cannot find my error. The issue is that after login the chat window re-displays the same info over and over (the last few entries), scrolling down to infinity. Any hints or suggestions would be appreciated, otherwise this tutorial was great, despite what nobody says. :-)

  5. pmcweb.at Says:

    the problem is the mysql.php file. at the end of the file, there is a blank (whitespace) after the php end tag ?>

    this causes the chatserver to return a blank as first character. so the the timestamp is always in the past and the messages are re-displayed.

    step of my solutionfinding:
    1.) call chatserver.php and have a look what it really delivers (not in the browser, in the source.
    2.) add a header(”Content-type: text/plain”); before the response in function send_messages() before die($response);
    3.) the error shows you the position, why the header can not be sent. (mysql.php:229)

    thats all folks
    pmcweb.at

  6. Sw3eT Says:

    Hi,
    I have the same problem of Todd, The last entrie is repeated to infinity.
    If someone can help me.
    Thx

  7. Yen Says:

    Hi,
    the problem are found by pmcweb.at, I have just change this :
    // We’re getting a valid response, first get the latest timestamp
    latest = response.substring(1,11);
    // Now get the messages
    var messages = response.substring(11, response.length);

    Do you notice that chat doesn’t work very well with Internet Explorer ?

    Yen

  8. Mike Greubel Says:

    WOW!! Nice tutorial to explain the power of ajax. My respect to you, there should be more people like you.

    I fixed the “undefined”-bug like this (script.js @ line 97)

    // Add each message
    var chat = $(’chat’);
    for (var i=0; i “);

    if(message == ‘undefined’ || message == ‘’ || message == null) continue;
    chat.value = chat.value + ‘\n’;
    chat.value = chat.value + message[0] + ‘: ‘ + message[1];
    }

    It fixes for me.

  9. Mike Greubel Says:

    Huh?? Your script cut my code into pieces of s…

    Ok, line 84 I add a validation of message, its inside the for(i

  10. Matthieu Says:

    Hi,
    I have the same problem like Yen, but i have another solution.
    I’ve seen that there is a white-space in the first position of the return of Ajax in the function “handle_response”…
    so, if i apply the function “trim” to the response, it will works, and i don’t have to change the code like Yen.
    Sorry for my english but i’m french.
    thanks a lot
    Matthieu

  11. spadgos Says:

    yeh there are some bugs. i left it a little while and then something i typed came up in duplicate, then this came up. need some better error checking.

    HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN” “http://www.w3.org/TR/html4/loose.dtd”:

  12. Rock Says:

    Yeah, this is a very gud script i’ve come across. Dont care about nobody. NOBODY is a shit creature in this world. Is this script working fine with u all. I haven’t checked yet. Got impressed with this n replied right back.

  13. nickp Says:

    Thanks for the great lesson. I’m just starting to do some server administration, setting up php and mysql, and I found this a great way to A) test my installations and B) get to know basic php and mysql and the basics of AJAX techniques. Thanks a lot and I hope the second edition of this tutorial comes out soon!

  14. AjaxBlog.it » Creare una chat con PHP ed Ajax Says:

    […] Tra le moltissime letture, mi ero dimenticato di far presente del primo di una serie di articoli dedicati alla creazione di una chat  utilizzando il linguaggio di programmazione PHP ed ovviamente Ajax. Be’, lo faccio ora insieme all’annuncio dell’uscita della seconda parte. […]

  15. Cypheros Says:

    Matthieu, where exactly did you invoke the trim() function. I’ve toyed with it all over the place, and either NO text shows up, or I keep getting the error…

  16. Jorge Rubiano Says:

    Very good chat, in addition the code is very easy to understand, speaks and writes in Spanish, reason why I use carácteres special in my writing, which does not accept. Felecitaciones to the developer of this application, that is very useful for the people who we are beginning in this technique of development Web (Ajax).

  17. :v:revolution - web:v:]中文[: » 用PHP和Ajax技术构建实时聊天系统(一) Says:

    […] April 26, 2006 at 4:15 am · Filed under PHP, 文献翻译 完整显示   1 2 3 4 5 原文地址 作者:Dennis Pallett 译者:!oEL […]

  18. WoOzY Says:

    lol, just finished translating part 1 into chinese and posted on my blog (of course i saved your original info. what am i, a pirate? no seriously, if you have any problem with this, i’ll stop, or i’ll continue translating your goodies :)

  19. xilin Says:

    There is a way to slove this problem:
    add this function in script.js:
    String.prototype.trim = function()
    {
    return this.replace(/(^\s+)|\s+$/g,”");
    }
    and then change : var response = request.responseText;
    use:var response = request.responseText.trim(); it will work;

    sorry about my english

Leave a Reply

About the author
Dennis Pallett is the main contributor to PHPit. He owns several websites, including ASPit and Chill2Music. He is currently still studying.
Article Index
  1. Introduction & How it works
  2. Creating the server
  3. Creating the client
  4. Conclusion
Bookmark Article
Download Article
PDF
Download this article as a PDF file