Shoutbox with PHP

Create a Basic Shoutbox with PHP and SQL

In this tutorial, we will be creating a basic ‘Shoutbox’ system with PHP. Aimed at beginners to PHP development, this allows you to get your feet wet working with databases before moving on to some of the more advanced PHP tutorials here at NETTUTS.

Introduction

This tutorial will guide you through the process of creating a basic “shoutbox” with PHP, using a MySQL database to store the shouts – and then make it look nice with some CSS. The tutorial is aimed at designers who are confident with HTML & CSS, but want to try their hand at developing with PHP.

Following the tutorial, you should hopefully have a good understanding of the basics of using PHP to communicate with a database to send, request and receive information. We will also be including the use of Gravatars in our Shoutbox, adding that little extra oomph!

For those who haven’t, I recommend you read our PHP From Scratch series in order to understand exactly what PHP is, and get a look at some of the basic syntax and how we use variables.

The sources files are also commented for those who would prefer to learn that way.

Step 1 – Getting Started

Database

Before starting, you should already have a database setup on your web server. Make sure you have the following details at hand:

  • Hostname (eg. localhost)
  • Database name
  • Username for database
  • Password

In the database, you will need to create a table named shouts with five fields:

  • id
  • name
  • email
  • post
  • ipaddress

To create this, run the following SQL code. You will normally run this from the SQL tab in phpMyAdmin.

CREATE TABLE `shouts` (
  `id` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
  `name` VARCHAR(45) NOT NULL,
  `email` VARCHAR(60) NOT NULL,
  `post` TEXT NOT NULL,
  `ipaddress` VARCHAR(45) NOT NULL,
  PRIMARY KEY (`id`)
);

You should receive a “Your SQL query has been executed successfully” message

The Files

We will need three files created for this project:

  • index.php
  • style.css
  • db.php

You will also need a folder with our required images. Grab this from the source files.

Database Connection Details

The db.php file will be used to store our database details. Open it and insert the following code:

<?php
$host = 'localhost'; //usually localhost
$username = 'root'; //your username assigned to your database
$password = 'password'; //your password assigned to your user & database
$database = 'shoutbox'; //your database name
?>

Step 2 – Interaction

Start your index.php file with the following code, it just begins our document and places a few sections to style later.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Shoutbox for NETTUTS by Dan Harper
<link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body>
<div id="container">

  <h1>Shoutbox
  <h5><a href="http://www.danharper.me" title="Dan Harper">Dan Harper </a> : <a href="http://www.nettuts.com" title="NETTUTS - Spoonfed Coding Skills">NETTUTS</a></h5>

  <div id="boxtop" />
  <div id="content">

Establishing a Connection

Before we can do anything with a database, we need to connect to it. Insert the following after the previous code. It is explained below.

<?php
$self = $_SERVER['PHP_SELF']; //the $self variable equals this file
$ipaddress = ("$_SERVER[REMOTE_ADDR]"); //the $ipaddress var equals users IP
include ('db.php'); // for db details

$connect = mysql_connect($host,$username,$password) or die('

Unable to connect to the database server at this time.

'); mysql_select_db($database,$connect) or die('

Unable to connect to the database at this time.

');

The first two lines use a built-in PHP function to get the name of this file, and the other line to get the visitors IP address. We will use the two variables later in the tutorial.

We then include our db.php file so we can retrieve the database details you filled in. Alternatively, you could paste everything from db.php here, but it’s good practice to separate the details.

$connect stores a function to use our database details in order to establish a connection with the database server. If it can’t connect, it will display an error message and stop the rest of the page loading with die().

Finally, we connect to our database.

Has anything been submitted?

The next thing we will do is check whether someone has submitted a shout using the form (which we will include shortly). We check the documents POST to see if something has been submitted from a form.

if(isset($_POST['send'])) {
    if(empty($_POST['name']) || empty($_POST['email']) || empty($_POST['post'])) {
        echo('

You did not fill in a required field.

'); } else {

We start with our if() which checks our POST to see if an item named ‘send’ has been submitted. If it has we use the empty() function to make sure the ‘name’, ‘email’ and ‘post’ fields were filled in. If they weren’t, we display an error.

Otherwise, we continue:

$name = htmlspecialchars(mysql_real_escape_string($_POST['name'])); 
$email = htmlspecialchars(mysql_real_escape_string($_POST['email'])); 
$post = htmlspecialchars(mysql_real_escape_string($_POST['post']));

$sql = "INSERT INTO shouts SET name='$name', email='$email', post='$post', ipaddress='$ipaddress';";

    if (@mysql_query($sql)) {
        echo('

Thanks for shouting!

'); } else { echo('

There was an unexpected error when submitting your shout.

'); } } }

On the first three lines, we run each of our fields (name, email and post) through the htmlspecialchars() and mysql_real_escape_string() functions and place them into their own variables.

htmlspecialchars() is a function designed to prevent users from submitting HTML code. If we didn’t do this, someone could put any HTML into our database which would then be executed to other users. This is especially bad if someone submitted javascript code that would transfer visitors to a malicious website!

mysql_real_escape_string() is a similar function. Except this one stops the user from submitting any sort of SQL code to the server. If we didn’t do this, someone could execute code to steal, edit or erase our database!

Using our new details, we create a SQL query to insert the submitted shout into the database. In the if() tags, we execute the SQL Query. If the query was successfully executed, and the shout added to the database, we display a “Thanks for shouting!” message; otherwise we display an error.

Retrieving the Shouts

We will now retrieve the 8 latest shouts from our database to display them to the user.

$query = "SELECT * FROM `shouts` ORDER BY `id` DESC LIMIT 8;";
    
$result = @mysql_query("$query") or die('

There was an unexpected error grabbing shouts from the database.

'); ?>

    On the first line, we create a new SQL query to "Retrieve all fields from the 'shouts' table, order them descending by the 'ID'; but only give us the latest 8".

    On the second line we execute the query and store it in $result. We now:

    while ($row = mysql_fetch_array($result)) {
    
        $ename = stripslashes($row['name']);
        $eemail = stripslashes($row['email']);
        $epost = stripslashes($row['post']);
        
        $grav_url = "http://www.gravatar.com/avatar.php?gravatar_id=".md5(strtolower($eemail))."&size=70"; 
        
        echo('
  • Gravatar

    '.$ename.'

    '.$epost.'

  • '); } ?>

The first line says "While there are still rows (results) inside $result, display them as follows:".

stripslashes() removes any slashes which mysql_real_escape_string() may have inserted into submissions.

$grav_url creates our Gravatar from each users email address.

We then output (echo) each shout in a specific manner. Basically displaying the Gravatar, Name and Shout in a list we can easily style later.

The Form

The final step for this page is to include a form to the bottom of the page which users can submit posts through.

<form action="<?php $self ?>" method="post">
<h2>Shout! </h2>
<div class="fname">

Note that we reference the $self variable to tell the form where to send it's results; and we also send via the POST method. Below the form we close off any HTML tags we opened.

Styling

Try it out! You've finished all the PHP code, and you should be able to add a new shout and see the 8 latest ones.

However, there's one problem. It looks UGLY! Lets sort that out with some CSS :) With this not being a CSS tutorial, I won't go over any of the styling, but everything's pretty basic.

* {
margin: 0;
padding: 0;
}

body {
background: #323f66 top center url("images/back.png") no-repeat;
color: #ffffff;
font-family: Helvetica, Arial, Verdana, sans-serif;
}

h1 {
font-size: 3.5em;
letter-spacing: -1px;
background: url("images/shoutbox.png") no-repeat;
width: 303px;
margin: 0 auto;
text-indent: -9999em;
color: #33ccff;
}

h2 {
font-size: 2em;
letter-spacing: -1px;
background: url("images/shout.png") no-repeat;
width: 119px;
text-indent: -9999em;
color: #33ccff;
clear: both;
margin: 15px 0;
}

h5 a:link, h5 a:visited {
color: #ffffff;
text-decoration: none;
}

h5 a:hover, h5 a:active, h5 a:focus {
border-bottom: 1px solid #fff;
}

p {
font-size: 0.9em;
line-height: 1.3em;
font-family: Lucida Sans Unicode, Helvetica, Arial, Verdana, sans-serif;
}

p.error {
background-color: #603131;
border: 1px solid #5c2d2d;
width: 260px;
padding: 10px;
margin-bottom: 15px;
}

p.success {
background-color: #313d60;
border: 1px solid #2d395c;
width: 260px;
padding: 10px;
margin-bottom: 15px;
}

#container {
width: 664px;
margin: 20px auto;
text-align: center;
}

	#boxtop {
	margin: 30px auto 0px;
	background: url("images/top.png") no-repeat;
	width: 663px;
	height: 23px;
	}

	
	#boxbot {
	margin: 0px auto 30px;
	background: url("images/bot.png") no-repeat;
	width: 664px;
	height: 25px;
	}

	#content {
	margin: 0 auto;
	width: 664px;
	text-align: left;
	background: url("images/bg.png") repeat-y;
	padding: 15px 35px;
	}
	
    #content ul {
    margin-left: 0;
    margin-bottom: 15px;
    }
    
    #content ul li {
    list-style: none;
    clear: both;
    padding-top: 30px;
    }
    
        #content ul li:first-child {
        padding-top:0;
        }
    
    .meta {
    width: 85px;
    text-align: left;
    float: left;
    min-height: 110px;
    font-weight: bold;
    }
    
        .meta img {
        padding: 5px;
        background-color: #313d60;
        }
        
        .meta p {
        font-size: 0.8em;
        }
    
    .shout {
    width: 500px;
    float: left;
    margin-left: 15px;
    min-height: 110px;
    padding-top: 5px;
    }
    
    form {
    clear: both;
    margin-top: 135px !important;
    }
    
        .fname, .femail {
        width: 222px;
        float: left;
        }
        
        form p {
        font-weight: bold;
        margin-bottom: 3px;
        }
        
        form textarea {
        width: 365px;
        overflow: hidden; /* removes vertical scrollbar in IE */
        }
    
        form input, form textarea {
        background-color: #313d60;
        border: 1px solid #2d395c;
        color: #ffffff;
        padding: 5px;
        font-family: Lucida Sans Unicode, Helvetica, Arial, Verdana, sans-serif;
        margin-bottom: 10px;
        }

Conclusion

So there you have it! A great-looking, fully functional Shoutbox! You may have wondered what the point of creating a Shoutbox is, and well, you're right, there is no point. But what this does do is help give you some vital basic understanding of using PHP to work with a database, allowing you to move on to much more advanced guides here at NETTUTS.

Heck, you could even reuse this code to create yourself an incredibly basic blog! Not much point to it, but it's fun.

Dan Harper is danharper on Themeforest
Note: Want to add some source code? Type <pre><code> before it and </code></pre> after it. Find out more
  • Mark

    Hi I get: Unable to select and connect to the database at this time. all the time and have no idea why – i followed instructions meticulously and still! using wamp server sql version 5.1.36

  • http://www.googleeastereggs.com code0
  • Levi

    Hi…
    I need help , i have a problem…

    I connect to de db, and it works fine.

    The problem is, i fill the form, and it dont apear in the screen, just in the db. WHY ?
    Its shoud work and apear “(which we will include shortly)”.

    Can you explain me whats happening ?

  • Levi

    I think you shoud re-upload the toturial :(

    It´s realy strange, it just dont respetc the code and dont show my shout´s in the screen !
    Only in DB.

    =(

  • Den

    Great !
    That’s what i’m looking for.

    Thank you !

  • Beto Guzman

    OK Everything is working but the comments don’t display they just appear in the database what did i do wrong??

  • http://www.CLUMBiE.com BALI RATIH

    can you combine your script with captcha and filter unpolite word?

    thanks alot

  • vncatalin

    This tutorial has many syntax errors in the code. I won’t point all of them here but most are like the following:

    if(isset($_POST['send'])) {
    if(empty($_POST['name']) || empty($_POST['email']) || empty($_POST['post'])) {
    echo(‘
    You did not fill in a required field.

    ‘);
    } else {

    That will only get you an error, maybe an echo in front of it will work. By the way, the indentation is also not so nice.

  • Pingback: From CodeIgniter to Ruby on Rails: A Conversion | CodeIgniter Tutorials

  • utpal

    Hi, thanks for this amazing tutorial; it’s really helpful. However I wanted to know how can we enable scrolling through the previous shouts. In the above code we can just view the last 8 shouts but what if we want the users to see all the shouts.

  • http://www.narcheeseshop.com BALI RATIH

    I dont know why this scripts is not working on my website, well im a newbie, is it work like updating status thingy?

  • http://rajinikanthb.wordpress.com rajnikanth

    well marcell..this is my ever first comment. u got this…right person..

  • http://ciul.tumblr.com Ciul

    Hii,,

    how make display our commant,if i send post more than once post??? help me please??

    if i send post more than once my post can’t display.

    i don’t understand about it,,

  • asfath

    Cant download the source????? Help me please. please send that source to my mail.. Advance thanks…

  • ceva

    this code doesn’t work anymore, too old

  • Frisby

    There are some weird paragraph tags in there, and part of the php code is in a pre tag for no apparent reason, but I was able to get it working by edited the above snippets a little.

  • Pingback: How to Create an Object-Oriented Blog Using PHP | Web Development Blog

  • leah

    Tried using this code to learn some language and there were some problems….I have the shoutbox where people can send their messages but they don’t show up on the site!

  • http://www.kalv.webuda.com kalyan

    Thank you very much, This helped a lot. One thing is that when using php, please put the inside the echo ” because otherwise it causes errors!

  • Jet

    Please include codes for preventing spam or double posts. Thank you and more power.

  • matt

    this is great, but holy-moley is the code-snippet formatting awful!

  • Pingback: [php] – External Links | Pandaforces

  • Nick

    Good tutorial to help beginners, bad formatting forced me to debug and fix the issues.

  • rohan

    hahahaa

  • Pingback: How to Create an Object-Oriented Blog Using PHP | Monvat.in

  • Pingback: Building a PHP CMS

  • http://net-wrench.com Jan Zumwalt

    I enjoyed your article. I plan to modify this code to work with SqLite so no server db is needed. Here is a support program to eliminate the need to open phpmyadmin or navigate a server control panel.

    PS. I tried using php in th earlier message and it did not work, so here we go one more time…

    body { margin: 100; text-align: center; }

    <?php

    include ('db.php'); // for db details
    $connect = mysql_connect($host,$username,$password) or die('Unable to connect to the database server at this time.’);

    if (!$connect) {
    die(‘Could not connect: ‘ . mysql_error());
    }

    $query = “DROP DATABASE IF EXISTS `shoutbox` “;
    $result = @mysql_query(“$query”) or die(“$mysqlerror Error: Could not drop database – $database.” . mysql_error($connect) );

    $query = “CREATE DATABASE `shoutbox` “;
    $result = @mysql_query(“$query”) or die(“Error: Tried to create database – $database.” . mysql_error($connect) );

    mysql_select_db($database,$connect) or die(“Error: Could not connect to database – $database.” . mysql_error($connect) );

    $query = “CREATE TABLE `shouts`(
    `id` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
    `name` VARCHAR(45) NOT NULL,
    `email` VARCHAR(60) NOT NULL,
    `post` TEXT NOT NULL,
    `ipaddress` VARCHAR(45) NOT NULL,
    PRIMARY KEY (`id`)
    )”;

    $result = @mysql_query(“$query”) or die(“Error: Tried to create table – ‘shouts’.” . mysql_error($connect) );

    echo “DB \”$database\” and TBL \”shouts\” initialized.”;

    ?>

  • http://twitter.com/jeff_pz_cr Jeffrey Briceno

    For me was a nice exercise because I’m adopting this script for use with PDO API

  • oyun skor

    good informaiton. good game at this site. http://www.oyunokyanusu.com

  • oyunskor

    very good online flash games http://www.oyunskors.com

  • oyun oyna

    play online free game http://www.tiryakioyun.com

  • tarif al
  • samya

    In the United States of http://www.louisvuittonwelcome.com/

  • Laim

    More of a comment/guestbook rather than a Shoutbox, good work though.