PHP is open source scripting language. It\'s widely used to develop web applications.  Home Web Programming PHP Making guestbook

Making guestbook


Making GuestbookIn this tutorial I will show you how to create a nice simple guestbook, I will be using PHP and MySQL for this.

The first thing we are going to need to do is determine what data we want to store, for a guestbook we will most likely want to store the users name, email address, the date and their comments.

To start, create a database called 'guestbook' (always keep database names relevant) and then insert this query:

CREATE TABLE guestbook (
ID int NOT NULL AUTO_INCREMENT,
name varchar(30),
email varchar(60),
dateposted date,
comment text,
INDEX (ID)
);

Here is the query, we are creating a table called guestbook with 5 fields.

The next thing we are going to need to create is the form in which users will input their data.

signguestbook.php

<form name="signguestbook" method="POST" action="addmessage.php">
<table cellspacing="4" style="padding: 0px; width: 500px;
border: 0px;">
<tr>
<td align="right"><b>Name:</b></td><td><input type="text" name="name" /></td>
</tr>

<tr>
<td align="right"><b>EMail:</b></td><td><input type="text" name="email" /></td>
</tr>

<tr>
<td colspan="2" align="center"><b>Comment:</b><br />
<textarea name="comment" rows="5" cols="50"></textarea></td>
</tr>

<tr>
<td colspan="2" align="center"><input type="reset" name="reset" value="RESET" />
<input type="submit" name="submit" value="SUBMIT" /></td>
</tr>
</table>
</form>

Now our form is set to POST and forwards all the data to addmessage.php which is where all the storing input to the database will happen.

addmessage.php

<?php
function safeAddSlashes($string) {
if (get_magic_quotes_gpc()) {
return $string;
} else {
return addslashes($string);
}
}

function mailcheck($emailadr){
if (eregi("^[a-zA-Z0-9_.-]+@[a-zA-Z0-9.-]+.[a-zA-Z]{2,4}$",
$emailadr))
return $emailadr;
else
return false;
}

$name = $_POST['name'];
$email = $_POST['email'];
$comment = $_POST['comment'];
$datetime = date("Y-m-d");

$comment = safeAddSlashes($comment);
$email = mailcheck($email);

$dbHost = "localhost";
$dbUser = "";
$dbPass = "";
$dbname = "guestbook";

$db = mysql_connect($dbHost,$dbUser,$dbPass);
mysql_select_db($dbname,$db);

$sql="INSERT INTO guestbook ('name', 'email', 'dateposted', 'comment')
VALUES ('$name', '$email', '$datetime', '$comment')";

$result = mysql_query($sql, $db);

if ($result) {
echo 'Thank you, your message has been entered successfully<br />';
echo 'To view the guestbook click <a href="/img_articles/9106/viewguestbook.php"
title="View Guestbook">here</a>.';
} else
echo 'Your message could not be added.';
?>

The first strange thing you may notice with this code is the JavaScript function at the top, well I will explain to you what it does:

This function is for protection

function safeAddSlashes($string) {
if (get_magic_quotes_gpc()) {
return $string;
} else {
return addslashes($string);
}
}

This is the function to check if the users email address is valid, is splits up the email address into 2 parts, the text before the @ and the bit after it to make sure a valid email is entered, if it is valid it will be sent along, if it is not then a NULL value will be sent.

function mailcheck($emailadr){
if (eregi("^[a-zA-Z0-9_.-]+@[a-zA-Z0-9.-]+.[a-zA-Z]{2,4}$",
$emailadr))
return $emailadr;
else
return false;
}

The next step is creating the output of the guestbook, since this is only a tutorial I won't make it look spectacular, I will leave it basic so you can edit it later on.

viewguestbook.php

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>

<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />

<title></title>

</head>

<body>

<h3>View Guestbook</h3>

<?php
$dbHost = "localhost";
$dbUser = "";
$dbPass = "";
$dbname = "guestbook";

$db = mysql_connect($dbHost,$dbUser,$dbPass);
mysql_select_db($dbname,$db);


$requete = "SELECT ID, name, email, dateposted, comment
FROM guestbook ORDER BY ID desc";
$result = mysql_query ($requete,$db);

while($row = mysql_fetch_assoc($result))
{
$name = $row['name'];
$email = $row['email'];
$comment = $row['comment'];
$datetime = $row["dateposted"];

if ($email)
echo '<a href="mailto:'.$email.'">';
echo $name;
if ($email)
echo '</a>';
echo ' - Posted on '.$datetime.'<br />';
echo ''.$comment.'';
echo '<hr />';
}
?>

</body>
</html>

Now you will see in this code, when I am fetching the fields from the table I am calling them up in ORDER BY ID desc. When the data is sent to the database we have our fieldname ID give it a number, for the first ever record it would be 1, the next record would then be 2 and so on. When we call them in order by ID desc we call up the most recently added data first. Say 20 people have signed the guestbook, number 20 would be the first shown record, then 19, 18, 17 ect ect.

Now with the bare bones of the this code you should be able to implement it into your site and make it a lot better to look at. If you would like to download the pre-written guestbook script you can do so here: Pre Written Guestbook Script



Author's URL: Joseph Skidmore
PHP is open source scripting language. It\'s widely used to develop web applications. More PHP Tutorials: Featured Materials | Fresh Materials | More PHP Tutorials at LearnPHP.org

Reader's comments
comments Christian Louboutin Shoes Sale January 12, 2012 says:
Know a lot of brand shoes, the most favorite brand is <a href=" Louboutin Shoes Sale</a>, red soles creative, wearing <a href=" Louboutin Wedding Shoes</a> wedding is very much looking forward to be married the girl thing. <a href=" Louboutin On Sale</a> a new product will cause buying spree!<a href=" Louboutin Pumps Black</a>,<a href=" Louboutin Boots On Sale</a>,<a href=" Louboutin Mens</a>,<a href=" louboutin high top sneakers</a>,<a href=" louboutin flats for cheap</a>,<a href
Reply
comments Christian Louboutin Shoes Sale January 12, 2012 says:
Know a lot of brand shoes, the most favorite brand is Christian Louboutin Shoes Sale, red soles creative, wearing Cheap Louboutin Wedding Shoes wedding is very much looking forward to be married the girl thing. Christian Louboutin On Sale a new product will cause buying spree!
Christian Louboutin Pumps Black
Christian Louboutin Boots On Sale
Christian Louboutin Mens
christian louboutin high top sneakers
christian louboutin flats for cheap
manolo blahnik something blue shoes
ferragamo shoes outlet
ysl tribute sale

Reply
comments home loans December 27, 2011 says:
The business loans are very useful for guys, which want to start their career. By the way, it is not really hard to receive a student loan.
Reply
comments Vitalina December 27, 2011 says:
Have nice day! You have a very informative site! And here's my! [url= aquarium fish[/url] <a href = " aquarium fish</a>
Reply
comments ghd rettetang December 12, 2011 says:
ghd rettetang <br>
ghd rettetang salg <br>
ghd glattetang <br>
kjøpe rettetang <br>
ghd rettetang <br>
billig ghd <br>
billig ghd rettetang i norge <br>
ghd styler rettetang <br>
ghd rettetang <br>

Reply
comments ghd outlet australia December 12, 2011 says:
ghd outlet >
ghd outlet australia >
ghd straightener outlet >
ghd straightener >
ghd straightener australia >
ghd Pink Orchid Limited Edition >
ghd outlet

Reply
comments Tracy Alex September 16, 2011 says:
Right now you should find the a variety of electric various guitars available. Almost all electric guitars can have sturdy bodies; this means that our bodies is constructed of solid wood as well as throughout sturdy colors. michael kors outlet bags The actual sorts of timber employed to create sound human body tend to be alder, lung burning ash, mahogany in addition to basswood. Any designed, decided maple cover would be generally viewed over a sturdy mahogany body. Cost-free wide range is a semi-hollow technology which can be usually small plus transportable along with both aspect or whole wi
Reply
comments Burberry outlet maker September 13, 2011 says:
<P style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-SIZE: 11pt" lang=EN-US>My partner and i attended that library for guidance in addition to checked out job, do-it-yourself aid along with organization books. In lots of books a new continual piece of information had been that will articulate exactly how you possibly can help and also increase an online business and also organization. In the event you may guide them beat the problems in addition to obstacles, you’d end up being </SPAN><SPAN style="FONT-FAMILY: Arial; FONT-SIZE: 10pt&q
Reply
comments tory burch handbags August 09, 2011 says:
This is my 3rd pair of Tory Burch flats (also have 1 pair of heels) and I love them! They fit great with the fitted back of the shoe and are so comfortable! These are too cute and will be so great for fall and winter.
Reply
comments Tiffany Outlet August 08, 2011 says:
At last, got what I was looking for! I am positively having fun with reading every little bit of it. Happy I stumbled onto this post: %BLOGTITLE%.and I have your website bookmarked to check out the newest stuff you write. Thanks for your nice posts!
Reply
comments Michaelkors outlet sale July 28, 2011 says:
This is such a wicked site you have. I have bookmarked it, and will return many times. Your website has been a great guide. Thanks.
Reply
comments Alex July 23, 2011 says:
Have nice day! Much useful information, nice design, but this color hurts your eyes. ? [url= book of cars[/url] <a href = " book of cars</a>
Reply
comments Gucci bags July 22, 2011 says:
The post is written in very a good manner and it entails much useful information for me. I am happy to find your distinguished way of writing the post. Now you make it easy for me to understand and implement the concept. Thank you for the post.
Reply
comments ssq July 12, 2011 says:
At last, got what I was looking for! I am positively having fun with reading every little bit of it. Happy I stumbled onto this post: %BLOGTITLE%.and I have your website bookmarked to check out the newest stuff you write. Thanks for your nice posts!
Reply
comments Birkenstock shoes July 08, 2011 says:
Hoping the rangers take out the yankees <br /><a href=" outlet</a> philles/rangers would be a great series!
Reply
comments toryburchoutletmaker July 06, 2011 says:
I am extremely impressed with your writing skills and also with the design of your blog. Is this a paid theme or did you edit it yourself?
Reply
comments Cheapcoachoutletstores July 01, 2011 says:
you could have a great blog here! would you prefer <a href=" shoes</a> to make some invite posts on my blog?
Reply
comments ssq June 23, 2011 says:
Good day from Italy! Will it be possible for me to quote a submit as part of your weblog using the link to you? I’ve tried emailing you regarding this issue but it appears I can’t achieve you, please reply when have a moment, thanks
Reply
comments tiffany charm bracelet June 21, 2011 says:
I appreciate this. Thanks for the informative article.
Reply
comments ssq June 13, 2011 says:
I would like to watch your article in my entire life. this article conceives outline novel, the topic has the mental strategy only, the paragraph is clear, details , fall the rise and fall, the main line is clear, fascinating, mild the extraordinary literature from bottom inside, is witty it may be said, a classic, is a model that my generation should the study.
Reply
comments ssq June 09, 2011 says:
At last, got what I was looking for! I am positively having fun with reading every little bit of it. Happy I stumbled onto this post: %BLOGTITLE%.and I have your website bookmarked to check out the newest stuff you write. Thanks for your nice posts!
Reply
comments ssq June 07, 2011 says:
The post is written in very a good manner and it entails much useful information for me. I am happy to find your distinguished way of writing the post. Now you make it easy for me to understand and implement the concept. Thank you for the post.
Reply
comments ssqin June 02, 2011 says:
A powerful share, I just given this onto a colleague who was doing just a little analysis on this. And he actually purchased me breakfast as a result of I discovered it for him.. smile. So let me reword that: Thnx for the deal with! But yeah Thnkx for spending the time to discuss this, I really feel strongly about it and love reading more on this topic. If attainable, as you change into expertise, would you thoughts updating your weblog with more particulars? It’s highly useful for me. Large thumb up for this weblog post!
Reply
comments tory burch shoes May 31, 2011 says:
Nice post! GA is also my biggest earning. However, it’s not a much.
Reply
comments tory burch shoes May 29, 2011 says:
What is captcha code?, pls provide me captcha code codes or plugin, Thanks in advance.
Reply
comments tory burch outlet May 20, 2011 says:
Hey, your post truly assists, today I also come across the same troubles, and I dont know on how to solve the issue. Finally I search bing and found your post, it helps me get rid of my trouble. Thanks again just one thing, may i paste your entry on my site? I will add the source. Regards!
Reply
comments Toryburchoutletfactory May 18, 2011 says:
Truly liked your website definitely received your level across. Found it whilst going through Google so wanted to let you know good career and you’ve got a bookmark from me.
Reply
comments Toryburchoutletfactory May 18, 2011 says:
Truly liked your website definitely received your level across. Found it whilst going through Google so wanted to let you know good career and you’ve got a bookmark from me.
Reply
comments Nikeworlds May 18, 2011 says:
Never thought blogging could be so fun and interesting. Man you know how to do it brother.
Reply
comments air max May 16, 2011 says:
Thanks for sharing your article. I really enjoyed it
Reply
comments mothers day gifts May 05, 2011 says:
The post is written in very a good manner and it entails much useful information for me. I am happy to find your distinguished way of writing the post. Now you make it easy for me to understand and implement the concept. Thank you for the post.
Mother’s Day Gifts:

Reply
comments tory burch outlet May 05, 2011 says:
There are some interesting points in time in this article but I don’t know if I see all of them center to heart. There is some validity but I will take hold opinion until I look into it further. Good article, thanks and we want more!
<a href=" burch outlet</a>

Reply
comments nike outlet May 05, 2011 says:
Have you ever thought about publishing an ebook or guest authoring on other sites? I have a blog based upon on the same subjects you discuss and would love to have you share some stories/information. I know my visitors would enjoy your work. If you are even remotely interested, feel free to shoot me an e mail.
Reply
comments Birkenstock May 05, 2011 says:
Nice site! I enjoy several from the articles that have been written, and particularly the comments posted! I am going to definately be visiting again!
Reply
comments cheap tiffany store May 05, 2011 says:
Your blog is excellently designed and has lots of beneficial articles that could be used as one great resource of knowledge of various aspects! I would like to thank you for sharing your thoughts!! Cheers
Reply
comments Tiffany Outlet May 02, 2011 says:
You blog is so lovely that speak the words right out my month. . I bookmarkt you so that we can talk about it in details, I really can't help myself but have to leave a comment,you are so good.
Reply
comments Tory Burch shoes May 02, 2011 says:
I would like to watch your article in my entire life. this article conceives outline novel, the topic has the mental strategy only, the paragraph is clear, details , fall the rise and fall, the main line is clear, fascinating, mild the extraordinary literature from bottom inside, is witty it may be said, a classic, is a model that my generation should the study.
Reply
comments Tory Burch flats May 02, 2011 says:
Thanks for the marvelous posting! I genuinely enjoyed reading it, you can be a great author. I will ensure that I bookmark your blog and will eventually come back from now on. I want to encourage continue your great job, have a nice holiday weekend!
Reply
comments ggmm April 21, 2011 says:
thanks for sharing
Reply
comments googd articles September 10, 2010 says:
googd articles
Reply
comments vimax April 13, 2010 says:
googd articles
Reply
Add comments to "Making guestbook"

Captcha