Jul 20, 2008

Simple Shoutbox - PHP, MySQL driven..

Free Web Hosting, No Ads > CONTRIBUTE > Tutorials
Pages: 1, 2, 3, 4

free web hosting

Simple Shoutbox - PHP, MySQL driven..

friiks
Ok, so I'm going to show you how to create a very basic shoutbox which is driven with PHP and a MySQL database.

So, lets start - open a database management program like PHPMyAdmin and run these queries.
SQL
CREATE TABLE `shoutbox` (
`id` INT( 11 ) NOT NULL AUTO_INCREMENT ,
`name` VARCHAR( 255 ) NOT NULL ,
`mail` VARCHAR( 255 ) NOT NULL ,
`time` VARCHAR( 255 ) NOT NULL ,
`message` TEXT NOT NULL ,
`ip` VARCHAR( 255 ) NOT NULL ,
PRIMARY KEY ( `id` )
) TYPE = MYISAM ;

CREATE TABLE `shoutbox_admin` (
`id` INT( 11 ) NOT NULL AUTO_INCREMENT ,
`name` VARCHAR( 255 ) NOT NULL ,
`password` VARCHAR( 255 ) NOT NULL ,
PRIMARY KEY ( `id` )
) TYPE = MYISAM ;

INSERT INTO `shoutbox_admin` (`id`,`name`,`password`) VALUES ('NULL', 'your_username', 'your_md5_hashed_password')

replace your_username with your username [for administration]
and your_md5_hashed_password with a password that has been md5 hashed. You can google for md5 hasher or just create a php file which contains this
CODE
<?php
$mypass='your_password';
$mypass=md5($mypass);
echo $mypass;
?>


Congratulations, your database is ready to be used tongue.gif

Next we will create a form.
Make a file called form.htm or any name you want it to be called.
Put this code in it.
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>
<head>
<title>Shoutbox</title>
</head>
<body>
<iframe src='shouts.php' width='150px' height='250px'></iframe>
<form method="post" action="doit.php">
<input type='text' name='name' value='Name' onfocus='this.value=""'><br>
<input type='text' name='mail' value='E-mail' onfocus='this.value=""'><br>
<textarea name='message' onfocus='this.value=""' rows='3' cols='15'>Your text</textarea><br>
<input type='submit' value='submit' name='submit'>
</form>
</body>
</html>

Here we create a form which will send data to a file that will insert the data into the database tongue.gif
And I'm using an iframe to view the shoutbox as I couldn't find a code to refresh only one <div>.

Ok, now for the file that will read the data sent from our form and will insert it into database.
Create a file called doit.php and put this code in it.
CODE
<?php
//including the database connection
include('config.php');
//getting everything that has been submitted
$name=mysql_real_escape_string(strip_tags($_POST['name']));
$mail=mysql_real_escape_string(strip_tags($_POST['mail']));
$message=mysql_real_escape_string(strip_tags($_POST['message']));
$submit=$_POST['submit'];
//get the current time with php date() function
//note that the server time will be recorded
//more info about all functions - http://php.net
$time=date("m/d/y");
//get the ip. Note that this wont see through proxies
$ip=$_SERVER['REMOTE_ADDR'];


//just some basic error checking which
//checks if name,e-mail and message
//hasnt been left blank or with default text
if (($name!=="") || ($name!=="Name") || ($mail!=="") || ($mail!=="E-mail") || ($message!=="") || ($message!=="Your text"))
{
//inserts data into the database
$sql = "INSERT INTO shoutbox (id, name, mail, message, time, ip) VALUES ('NULL', '$name', '$mail', '$message', '$time', '$ip')";
mysql_query($sql) or die(mysql_error());
//sends the user back to the form
header("Location:".$_SERVER['HTTP_REFERER']);
}
else{
header("Location:".$_SERVER['HTTP_REFERER']);
}
?>


Ah, config.php, forgot about it!
Create a file named like that and put this in it.
CODE
<?php

    $dbhost   = 'database host';
    $dbname   = 'database name';
    $dbusername   = 'database username';
    $dbuserpass = 'database password';    
    
mysql_connect ($dbhost, $dbusername, $dbuserpass);
mysql_select_db($dbname) or die('Cannot select database');
?>

I guess you understand which parts you have to edit here.

Ok, now for the final part - file that will output the shouts.
Create a file named shouts.php and this is the code to put in it.
CODE
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>
<head>
<style type="text/css">
<!--
.shout{
padding-bottom:4px;
border-bottom:1px solid #000;
width:150px;
text-align:left;
font-family:verdana;
font-size:10px;
}
-->
</style>
<title>Shoutbox</title>
</head>
<body onLoad=window.setTimeout("location.href='shouts.php'",10000)>
<?php
include('config.php');
$result = mysql_query("select * from shoutbox order by id desc limit 5");

//the while loop
while($r=mysql_fetch_array($result))
{      
   //getting each variable from the table
   $time=$r["time"];
   $id=$r["id"];
   $message=$r["message"];
   $name=$r["name"];
     $mail=$r['mail'];

echo "<div class='shout'>
    Shouted on: <i>".$time."</i><br>
    By <b><a href='mailto:".$mail."'>".$name."</b></a><br>
    ".$message."<br>
   </div><br>";
} ?>
</body>
</html>

The final code just gets all data from database and is outputted with a while loop. note that you can add pagination, limit...anything to this. This is a very simple shoutbox example.

If you have any questions please ask as I may have forgotten something...

I will add the administration later as my headache is killing me. Here's my files if someone wants to see.
[attachment=570:shoutbox.zip]

Edit:
Oh yea, wanted to include the preview :$
clickie^^

Edit No.2:

The Administration Panel!
CODE
<?php
//Start the session so you would stay logged in..
//must be ABOVE ANY output
session_start();
//Get the cmd variable
$cmd=$_GET['cmd'];
$idg=$_GET['id'];
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>
<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
<title>ACP</title>
</head>
<body>
<?php
//include config.php
include 'config.php';
//get the username from the form and add some security
//so you cant get hacked so easy tongue.gif
$username = mysql_real_escape_string(strip_tags(htmlspecialchars($_POST['username'])));
$password = md5($_POST['password']);

//if login button is pressed
if ($_POST['login']){
//check if username and password are inserted
if((!$username) || (!$password)){
//if not tell them to...do insert all of info
echo "Please enter both values<br>";}
//when they have we check if the username and the password exists
$sql = mysql_query("SELECT * FROM `shoutbox_admin` WHERE `name` = '$username' AND `password`= '$password'") OR die(mysql_error());
//so we need to check it for real
//mysql_num_rows() counts the rows which are returned as true
$login_check = mysql_num_rows($sql);
//if the check is true....true = 1 and $login check is set as $login_check=1
if($login_check > 0){
//so if it is larger than 1 we set some session variables -
//username and id
$r=mysql_fetch_array($sql);
$_SESSION['id'] = $r['id'];
$_SESSION['username'] = $r['name'];
//if it's not let's make him suffer...moahahahaa...
//reload the page I mean.. tongue.gif
}else {
header("Refresh:2;admin.php");
echo 'Go and login <-<';
}
}
//so if session username isn't set show user the login form
if(!isset($_SESSION['username'])){
?>
<center>
<form action='<?=$_SERVER['PHP_SELF']?>' method='POST'>
Username: <input type='text' size='15' name='username'><br>
Password: <input type='password' size='15' name='password'><br>
<input name="login" type="submit" value="Submit">
</form></center>
<? }
//if not - show him the contents and stuff...
else{
//welcome message and logout link...
echo "<center>Welcome, ". $_SESSION['username'] ."! <a href='logout.php'>Log Out</a></center>";
echo "<br><br><center>";
//see my ?id= browsing tutorial to understand switch()
switch($cmd){
default:
//getting all of the shouts and adding `delete me` link...
$result = mysql_query("select * from shoutbox order by id desc");
while($r=mysql_fetch_array($result))
{
$name=$r["name"];
$message=$r["message"];
$time=$r["time"];
$id=$r["id"];
echo "Shout by: ".$name." <strong>@</strong> ".$time."<br>".$message."<br><a href='?cmd=delete&id=".$id."'>Delete me</a><br><br>";
}
break;
case 'delete':
$sql = "DELETE FROM shoutbox WHERE id=".$idg."";
$result = mysql_query($sql);
header('Refresh:2;admin.php');
echo "deleted";
}
;}
?>


logout.php
CODE
<?
session_start();
$_SESSION = array();
header("Location: index.php");
?>


[attachment=581:admin.php] - admin.php
[attachment=582:logout.php] - logout.php

 

 

 


Reply

jlhaslip
friiks,

Looks like a nice script, but any chance that you could include a live demo link for people to check out?

And for those who are Database challenged, check out this link.

Reply

shadowx
Looks good to me! Im glad you made this so i can see how i can modify mine. The problem i have with working with DB's is not the coding itself but the planning of the coding, i start it then realise i need another table or DB and eventually it messes up and i give up!

I also like the fact that not the entire page needs to be refreshed, by using the IFRAMES you can have only that frame refreshing to update the shouts. Im not much of a fan of frames though so i guess either of us could use an include or something which is what i generally use nowadays and then use the data from a variable to echo out to the page, by doing this it might be possible to update just the data inside a DIV, either way i used a textarea because its simpler tongue.gif

I also like the fact you included some NULL data checking

CODE
if (($name!=="") || ($name!=="Name") || ($mail!=="") || ($mail!=="E-mail") || ($message!=="") || ($message!=="Your text"))


I think thats a good idea to help with spamming issues, if you wanted to get even more in depth you could also record IP's and ban them from shouting for several seconds to stop flooding but now im just being picky!

Good work there smile.gif

 

 

 


Reply

delivi
thanx for sharing, this is a really good script. I'm gonna try it and let you know the results.

Reply

t3jem
awesome, I've been looking for a simple shoutbox I could host myself. Thank you very much for this tutorials. There is one suggestion I would make though, a little more explination of the code would help for those who are unfamiliar with the code and would like to learn what each line does. Either way, thanks a ton for the tutorial.

Reply

friiks
Thank you for the replies smile.gif
And @ t3jem, I knew I commented the code too less, I was just in little hurry when submitting this so I'll add some more comments when I update the topic with a file for the administration.

Reply

JDameron91
Great tutorial, mate. biggrin.gif
Nice how you added their mail to their names, very cool. smile.gif

Reply

shadow82x
Looks nice and easy to install and use. But I think you should have a quick option to change the colors or the theme

Reply

Unregistered 012
Wow. Nice, i will have to try this one out sometime. Thanks.

Reply

friiks
Well, you have to change the color/theme, anything yourself. This is a tutorial in which I give you the code to learn from. You can get css and colorize it.. tongue.gif

Reply

Latest Entries

html
Hi,
Thanks for sharing such a good tutorials when i visited this site i thought about the shoutbox and after that
you provided us this great tutorial about how it works and you provided the whole code thanks for sharing

Reply

TypoMage
laugh.gif Nice but when you say simple? Ever thought about clueless beyond belief TypoMage, of any language except for English? laugh.gif Nice though I think I live demo would be a rather good idea! smile.gif

Reply

Tramposch
from my extent, it isn't simple.

But it looks so confusing that it would be good, you know what i mean? because many complicated things are very good. I really need a shout box for my site, is the shoutbox that t17 uses custom? or can i find it somewhere

Reply

Medorasho
gr8 tut,

but does that one deffires form the D-script one ?

Reply

HavocHotel
Nice.. I was looking for a nice and easy shoutbox which is basic colour features and simple admin.php & logout.php smile.gif

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Pages: 1, 2, 3, 4
Recent Queries:-
  1. simple shoutbox - 5.03 hr back. (1)
Similar Topics

Keywords : simple, shoutbox, php, mysql, driven,

  1. Make A Flat Based Shoutbox, With Auto Refresh.
    (5)
  2. Getting Started With Mysql
    creating tables and insert data into them. (2)
    Hi in this tutorial you will learn how to create tables and insert items into them. First steps are
    to create the database - go into your cpanel and mysql databases, from there make an account and a
    database and then attach them together with all priviliges, call the database test and the account
    admin, with the pw as pass - or any other password. We need to connect to the database so first in
    your php file (probably named index.php) - this is how to do it. CODE
    mysql_connect("localhost", "admin", "pass") or
    die(mysql_error(&....
  3. Simple Shoutbox In Php
    (2)
    This is a simple shoutbox I created in the past for my class. “shout!box.php” CODE
    <html> <head>   <title>  Projekt Shout!box  </title>
    </head> <body>   <form action="shout!box_prc.php"
    method="post">    <table border="2" align="center"
    width="400">     <tr>      <td
    align="center">SHOUT!!!BOX</td>     </tr>     <tr
    height="300">      <td align="center" width="300....
  4. Adding Data To A Database And Displaying It Later
    Using Forms, PHP and MySQL (1)
    Requirements: PHP Support MySQL Database access I am going to use a news program as an example.
    Ok, first you are going to need to connect to the database. Do so by using the code below. I have
    added some comments where you will need to edit to fit your server's specifications. Create a
    new file with notepad and call it config.php QUOTE //Change root to your database
    account's username $dbusername = "root"; //Add your account's password in between the
    quotations $password = " "; //Add the name of the database you are using in betw....
  5. Simple User System
    php, mysql driven (19)
    Hey! Maybe you've seen my other tutorials...or my signature.. Anyways I'm going to show
    you how to make a system so users of your site could register accounts and you could have protected
    - user only - pages on your site /smile.gif" style="vertical-align:middle" emoid=":)" border="0"
    alt="smile.gif" /> Ok, so we start by creating a config.php file. CODE <?php
        $dbhost   = 'database host';     $dbname   = 'database name';
        $dbusername   = 'database username';     $dbuserpass = 'database pas....
  6. How To Make A Simple File Based Shoutbox Using Php And Html
    (8)
    A simple tut to make a simple shoutbox. Let me jump right in. First of all you need the standard
    equipment for PHP, an IDE like XAMPP and an editor like PHP EDITOR 2OO7. Were going to make a
    simple guestbook using three files, webpage.php, shout.php and shout.txt. Webpage.php can be
    changed to whatver you want, it will be the page on which the guestbok is shown, you could even use
    this code and add it to another php page n your site. Shout.php is the proccessing page and
    shout.txt is where the shouts are stored. Firstly we need to make the visual design of the box.....
  7. Cpanel Mysql Database Management
    Part 2.1 Of My 7 Part Cpanel Tutorial (6)
    This tutorial is an extension to my 7 tutorial series about the Cpanel. The 7 different Cpanel
    tutorials can be found below. Part 1: E-mail Management Part 2: Useful Site Management Tools
    Part 3: Useful Site Management Tools2.1 Part 4: Analysis/Log Files Part 5: Advanced Tools Part
    6: PreInstalled Scripts, Extras, and Cpanel Options Part 7: Fantastico Detailed Cpanel
    Tutorial Part 2.1: MySQL Management In this tutorial, i will explain how to add, edit, delete
    and over-all manage the MySQL Feature in the Cpanel. Creating a MySQL Database 1) ....
  8. Starting Or Stopping Apache And Mysql Server Via Batch File
    (0)
    Hi guys, this is a litte tutorial about how we start and stop the Apache and MySQL in Windows NT
    (2000, XP, 2003) via a batch file script. As we know in Windows NT based system Apache and MySQL
    installed as Windows Services. So we can stop and start it using NET command. For more information
    about DOS command, type HELP at command prompt. I assuming that your MySQL service name is "mysql"
    and your Apache (Apache 2.0.x) service name is "apache2". If you want to chek it click Start > Run >
    services.msc > OK. Windows IS NOT Case Sensitive. Let's get started!. 1. ....
  9. Features That You Can Use In The Shoutbox
    (5)
    Some people dont know all of the features that the shoutbox has so im going to write about it
    explaining it. Viewing Statistics In D21-Shoutbox 1.2 I have seen a few shouts in
    the shoutbox asking how to view the Statistics for the Shoutbox, and it is quite simple actually.
    First you need to click on "View The Shoutbox" which is located on the top bar of the Shoutbox,
    it is located right next to "Latest Shouts In The Shoutbox" Once you are there, look in the
    Trap17 Shoutbox section for My Control Panel Then it should be self ex....
  10. Check Referrer To Prevent Linking Yours From Other Sites
    Check referrer with Php and Mysql (8)
    Check Referrer Using Php To Prevent People Linking To Your Downloads From Other Sites Ever
    find that found some people are listing items, images and tuts and linking directly to the download
    url (those that are like my photoshop tutorial.php?id=0), which is a .php to count the number of
    downloads. To prevent this, you can add a piece of code to the download pages that checks which page
    referred them to the download page: if it's my domain, it downloads the file normally, if
    it's not, it will redirect to my home page instead. Important : Not all browser....
  11. Quiz With Php, But Without Mysql
    (3)
    Ok let`s start! Once I wrote it for school: At first we need questions (php) CODE
    $form_block = " <p>Quiz</p> <form method=\"POST\"
    action=\"$_SERVER[PHP_SELF]\">
    <p><strong>What's The Capital City Of England?</strong><br>
    <input type=\"text\" name=\"q1\"
    value=\"$q1\" size=30></p> <p><strong>How Many
    Letters Are There In The Alphabet?</strong>&....
  12. Installing Php + Mysql + Apache + Phpmyadmin On Windows Part 2
    Continue the last section which is installing phpMyadmin (0)
    QUOTE phpMyAdmin lets you control you MySQL database from a web browser. Steps: 1. If you
    haven't done so already, download the phpMyAdmin Database Manager - You can download the
    software from the phpMyAdmin website. Be sure to download the phpMyAdmin-2.6.2-pl1.zip file. Save
    the file on your Windows Desktop. ... ... ... Go to for more info. Post Copied. Member
    Banned ....
  13. Searching With Php And Mysql
    The easy way :P (2)
    Searching with PHP and MySQL is pretty easy when you think about it, especially if you're doing
    it the simple way (without boolean or whatever) /tongue.gif' border='0'
    style='vertical-align:middle' alt='tongue.gif' /> It consists of a few forms, a query and an
    output. As I said, simple! CODE <form name=\"form1\"
    id=\"form1\" method=\"post\" action=\"<?
    $php_self ?>\"> <table width=\"100%\"
    border=\"0\" cellspacing=\&#....
  14. Install Php 5 To Work With Mysql
    (0)
    hi, all php 5 is new to all people a long time( actually, I forget how long...). it introduced a
    more object-oriented design to developer. like, access type(public, private, protected), abstract
    type(classes that can't create objects), interface support, and more . althrought it is
    widerly available, someone still can't get it running with mysql. every time the php is starting
    up. a message prompted stated that some xtensions can not be found, and therefore, not loaded. so, I
    have written this to help other and newbie get it start quickly. note: thi....
  15. A Nice Mysql Server Check
    (4)
    I made this and its not very hard at all just fill in the info and it willl see if your mysql is up
    or down CODE <html> <head> <title> Mysql Connection Test
    </title> </head> <body> <h2> <?php // On this you need to put
    your host most of the times localhost username and password. $conncect = mysql_connect (
    "host", "Username", "password" ) or die (" Sorry your server
    can't connect to your mysql server <BR> Check to see you have put in the Username and....
  16. Tutorial: Installing D-shoutbox For Ipb V1.2
    Making your installation even easier (12)
    Over the course of the summer I have tried hard to install a shoutbox into a new forum I was
    developing. I went to the Invisionalize forums and found several mods for shoutboxes, but none of
    them seemed to work. I first tried to install the D-Shoutbox, but upon this first try, I was
    unsuccessful. Eventually, after much frustration, and trying other mods, which didn't seem to
    stack up to Dean's features, I was determined to make it work. For some, editing your files (to
    the newbie that is) can be difficult, with everything looking like a foreign language (basi....
  17. Mysql Database Setup
    tutorial walk through (1)
    Post copied. Google cache to source Credits have been adjusted. Setting Up Your MySQL &
    phpMyAdmin For The First Time This tutorial will show you how to set up your MySQL and your
    phpMyAdmin with ease, regardless of whether you are going to be using PHP Nuke or PHP Nuke
    Platinum. The process is still the same. -Log into your CPanel with your User Name and Password.
    -Click on MySQL icon -Now, we need to create a database also known as Db , Your User Name will
    make up part of the necessary details, but you don't need to do this as it will be done au....
  18. Php Dynamic Signatures
    Using the GD Module and MySQL (9)
    PHP Dynamic Signatures using the GD Module After much scowering on the internet to find a
    suitable tutorial on this subject, I came up empty-handed. So I was forced to learn it on my own
    through trial & error. And since I had discovered a lack of tutorials on this subject, I dediced to
    write one! Working Example: Abstract : Using the GD Module of PHP allows a
    developer to build custom Images with Dynamic Content. Such content could be the Requesting Users
    IP Address, Web-Browser Type, Operating System, even the number of times the user has see....
  19. Backing Up And Restoring Mysql Databases
    (10)
    If you're an Administrator on a Forum, you probably know the importance of regular data backups.
    My Forum is always being hacked by someone and they always delete our SQL Databases. Well this
    tutorial is for all of you who want to protect your data and restore it if necessary! Okay,
    backing up your data is the first part. I use Cron Jobs in my cPanel to automate the backup
    process. Just use this code for backing up all your SQL Databases: CODE mysqldump -u root
    -psecret --all-databases > backup.sql OR if you wish to backup only a single database: ....
  20. Php/mysql Login/register
    Tutorial for login with databases. (2)
    Start register code. Register.php CODE <form method=post
    action=register.php?action=register  name=s> <table>
    <tr><td>Username:</td><td><input type=text
    name=user></td></tr>
    <tr><td>Email:</td><td><input type=text
    name=email></td></tr>
    <tr><td>Pass:</td><td><input type=password
    name=pass></td></tr> <tr><td>Verify
    Pass:</td><td><input ....
  21. Complete Login And Registration System
    doesn't use mysql! (9)
    kLogin 0.1 QUOTE(readme.txt) Readme file to kLogin 0.1 To use the internet explorer fix:
    download the latest IE7 ZIP file
    (http://sourceforge.net/project/showfiles.php?group_id=109983&package_id=119707) Extract the ie7
    zip file to the root directory of your web server. Example, if you are using a unix/linux server,
    it's on "public_html/" or "home/public_html" Open kLogin.php file with your editor and edit the
    $info_text or $info_txt variable. Then, extract the kLogin.php file in to the root
    directory of your web server also. Just run kShoutBo....
  22. How To Host Ur Own Site In 2 Mins Php+mysql Needed
    (34)
    QUOTE Run you're own server for testing phpmysql or just to host you're own website or
    for you're friends. -needS: a PC that's all 8) - How to ? download : CODE
    http://server.paehl.de/apache20.zip : 30 seconds Installing:---> 1 minute
    *********************************** Unpack the exe where ever you want. after unpack run
    serverinst.exe and change Servername and your e-mail. Start the following files one time:
    start_apache.cmd --> start apache as service mysql_start_as_service.cmd  --> dito for mysql
    mysql_first_st....
  23. Shoutbox, Made Easy!
    kShoutBox 0.3 ... now more powerful! (2)
    kShoutBox 0.3 QUOTE(readme.txt) Readme file to kShoutBox 0.3 To use the internet explorer
    fix: Extract the ie7 folder to the root directory of your web server. Example, if you are using a
    unix/linux server, it's on "public_html/" or "home/public_html" Then, extract the kShoutBox.php
    file in to the root directory of your web server also. After that, open kShoutBox.php using your
    Editor, then modify the MySQL Database username, and password. (if you are using cPanel, make sure
    that you create a database manually, then enter the database name on hte kShout....
  24. Shoutbox, Made Easy! Again!
    with another version! (2)
    kShoutBox 0.2 has been released! For more information, go to http://www.karlo.ph.tc
    /* ****************************** kShoutBox 0.2 ****************************** */
    /* **************************************** This ShoutBox script was created by Juan Karlo Aquino
    de Guzman DO NOT MODIFY THIS CODE AND DISTRIBUTING IT WITHOUT ANY PERMISSION. E-MAIL THE AUTHOR
    FIRST. Email: 01karlo@gmail.com DO NOT REMOVE THE "POWERED BY". FOR SUGGESTIONS, COMMENTS, ETC,
    SEND AN EMAIL TO 01karlo@gmail.com HOPE THAT YOU ENJOY THIS SCRIPT! MY FRIEN....
  25. Shoutbox, Made Easy
    PHP+MySQL ShoutBox! Very simple... (17)
    Just create a PHP file named "kShoutBox.php" CODE <?php header("Content-type:
    text/html; charset=utf-8"); //Send to browser that the charset is utf-8 ?> <?php
    /* ******************************   kShoutBox 0.1 ****************************** */
    /* **************************************** This ShoutBox script was created by Juan Karlo Aquino
    de Guzman DO NOT MODIFY THIS CODE AND DISTRIBUTING IT WITHOUT ANY PERMISSION. E-MAIL THE AUTHOR
    FIRST. Email: 01karlo@gmail.com DO NOT REMOVE THE "POWERED BY". FOR SUGG....
  26. Clicks Counter
    With PHP + MySQL (0)
    Well, in this tut, I'll show you how to do an simple link counter, with only one count for each
    IP and the date when the link were clicked. Just remember, this is only one way to do it. First,
    create an mysql database called 'links', with 2 table: first table will be called
    'links', with the columns: id, title, ref and clicks. The other one will be 3 columns and
    will be called links_info: id, ip and date. Just remember that the columns 'id' of this
    second table IS NOT auto-increment. Here is the code of the file which will count the clicks, ....
  27. Complete Login System
    With PHP + MYSQL (56)
    Its an complete login sistem made and tested by me and I think itwill be very usefull for people who
    are tryn to learn PHP. First, let's make register.php: CODE <?
    include("conn.php"); // create a file with all the database connections
    if($do_register){ // if the submit button were clicked if((!$name)
    || (!$email) || (!$age) || (!$login) ||
    (!$password) || (!$password2)){ print "You can't let
    any fields in blank....
  28. A Guide On Webhosting, Php, Mysql, And Phpmyadmin
    (0)
    I thought I'd submit this little guide of mines, after I gave my friend an impromptu
    introduction on this. I hope those who are new to PHP and MySQL will fin this usefull. What is
    PHP? PHP is a scripting program, you install PHP into your server, BUT, you can only do it if you
    have "physical" access to the server, (i.e. - you can close the server, add stuff to the server,
    clear the server, remove the server). People who have web hosting accounts CAN NOT install PHP,
    because, they only "own" a part of the server. You must be the server administrator in order to ins....

    1. Looking for simple, shoutbox, php, mysql, driven,

Searching Video's for simple, shoutbox, php, mysql, driven,
Similar
Make A Flat
Based
Shoutbox,
With Auto
Refresh.
Getting
Started With
Mysql -
creating
tables and
insert data
into them.
Simple
Shoutbox In
Php
Adding Data
To A
Database And
Displaying
It Later -
Using Forms,
PHP and
MySQL
Simple User
System -
php, mysql
driven
How To Make
A Simple
File Based
Shoutbox
Using Php
And Html
Cpanel Mysql
Database
Management -
Part 2.1 Of
My 7 Part
Cpanel
Tutorial
Starting Or
Stopping
Apache And
Mysql Server
Via Batch
File
Features
That You Can
Use In The
Shoutbox
Check
Referrer To
Prevent
Linking
Yours From
Other Sites
- Check
referrer
with Php and
Mysql
Quiz With
Php, But
Without
Mysql
Installing
Php + Mysql
+ Apache +
Phpmyadmin
On Windows
Part 2 -
Continue the
last section
which is
installing
phpMyadmin
Searching
With Php And
Mysql - The
easy way :P
Install Php
5 To Work
With Mysql
A Nice Mysql
Server Check
Tutorial:
Installing
D-shoutbox
For Ipb V1.2
- Making
your
installation
even easier
Mysql
Database
Setup -
tutorial
walk through
Php Dynamic
Signatures -
Using the GD
Module and
MySQL
Backing Up
And
Restoring
Mysql
Databases
Php/mysql
Login/regist
er -
Tutorial for
login with
databases.
Complete
Login And
Registration
System -
doesn't
use
mysql!
How To Host
Ur Own Site
In 2 Mins
Php+mysql
Needed
Shoutbox,
Made
Easy! -
kShoutBox
0.3 ... now
more
powerful!
;
Shoutbox,
Made
Easy!
Again! -
with another
version!
Shoutbox,
Made Easy -
PHP+MySQL
ShoutBox!
; Very
simple...
Clicks
Counter -
With PHP +
MySQL
Complete
Login System
- With PHP +
MYSQL
A Guide On
Webhosting,
Php, Mysql,
And
Phpmyadmin
advertisement



Simple Shoutbox - PHP, MySQL driven..



 

 

 

 

ADD REPLY / Got an Opinion! Remove these ADs! RAPID SEARCH! Free Web Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE