2019-02-24 Pujan Niroula 3 Minute(s) Read

Create Guestbook in PHP

img-thumbnails.png

Guestbook is not mandatory for site but if you want to have a guestbook where visitor of your site leaves message publicly then this post is for you. Guestbook is a better way to show your site's fame. If a guest appreciate your product on site through contact us form then just you will know but If a visitor publicly posted on guestbook then everyone will know your service or product's fame.

Guestbook Example

Most of guestbook script available on internet is based on PHP and Mysql. That is little lengthy process where you have to setup database and tables. But today I will show you how to create guestbook without MYSQL.  

<?php
$file_name = 'guestbook.txt';
if(!file_exists($file_name)) {
        file_put_contents($file_name, '');
    }
function check_input($input){
    if(empty(trim($input))) {
        die('Fill all fields properly');
    } else {
        return htmlspecialchars($input);
    }
}
function add_entry($username, $message, $file_name) {
    $get_content = file_get_contents($file_name);
    $time = date('Y-m-d h:i A',time());
    $content = '<div class="container border rounded p-3 bg-light"><b>'.$username.'</b><span class="text-muted"> ('.$time.')</span>'.'<p class="text-dark">'.$message."</p></div>\n".$get_content;
    file_put_contents($file_name, $content);
}
if(isset($_POST['username']) && isset($_POST['message'])){
    $username=check_input($_POST['username']);
    $message=check_input($_POST['message']);
    add_entry($username, $message, $file_name);
}
$final_content = file_get_contents($file_name);
?>
<!DOCTYPE html>
<html>
<head>
    <title>Simple Guestbook System by Pujann</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
</head>
<body class="bg-info">
<div class="container text-center">
    <h1>Simple Guestbook System without Mysql in PHP</h1>
    <span class="bg-light p-2">
        <?php echo substr_count($final_content, 'container border rounded p-3');?> Message(s)
    </span>
    <button class="btn btn-success" data-toggle="modal" data-target="#addMessage">Add New Message</button>
    <div class="row mt-2">
        <div class="col-md-6 offset-md-3 col-sm-12">
            <?php
            echo $final_content;
            ?>
        </div>
    </div>
</div>
<div class="modal fade" id="addMessage" role="dialog">
    <div class="modal-dialog">
        <div class="modal-content">
            <div class="modal-header">
                <h3>Leave a Message</h3>
            </div>
            <div class="modal-body">
                <div class="container border rounded bg-light p-2">
                    <form action="" method="post" class="form">
                        <input type="text" class="form-control mb-1" name="username" placeholder="Full Name(eg. John Doe)" required="">
                        <textarea name="message" id="" cols="10" rows="5" class="form-control" placeholder="Leave your message...." required=""></textarea>
                        <input type="submit" class="btn btn-danger mt-1" value="Submit">
                    </form>                
                </div>
            </div>
        </div>
    </div>
</div>
</body>
</html>

Note: It will create a new file named guestbook.txt on the folder it is uploaded to and store all the guestbook messages. If you deleted guestbook.txt all data will be lost.

Thanks for reading...

Tags:php, how to,
Comments (67) Add New Comment
XRumerTest2024-07-20 4:39 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 4:39 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 4:28 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 4:27 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 4:27 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 4:14 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 4:13 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 4:13 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 4:00 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 3:59 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 3:59 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 3:48 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 3:47 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 3:47 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 3:35 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 3:34 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 3:34 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 3:22 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 3:21 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 3:21 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 3:10 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 3:09 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 3:09 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 2:57 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 2:56 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 2:56 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 2:45 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 2:44 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 2:44 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 2:30 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 2:28 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 2:28 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 2:17 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 2:16 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 2:16 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 2:05 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 2:04 PM

Hello. And Bye.

Reply
XRumerTest2024-07-20 2:04 PM

Hello. And Bye.

Reply
Norine2024-07-11 11:40 PM

When I originally commented I seem to have clicked the -Notify me when new comments are added- checkbox and now each time a comment is added I get 4 emails with the exact same comment. Is there a way you can remove me from that service? Thanks a lot!

Reply
Norberto2024-07-03 3:43 PM

always i used to read smaller articles or reviews that also clear their motive, and that is also happening with this paragraph which I am reading now.

Reply
Myra2024-06-30 1:37 AM

It's in fact very complex in this full of activity life to listen news on TV, so I just use the web for that reason, and obtain the newest news.

Reply
Judson2024-06-28 2:15 PM

Vào lúc 15h ngày 17/11, Công an xã Tá B?, huy?n M??ng Tè, Lai Châu nh?n ???c tin báo c?a tr?m y t? xã v? vi?c cháu Vàng ??c L. (dân t?c La H?, sinh n?m 2021, ? b?n Tá B?) b? ng? ??c thu?c tr? sâu, c?n ph?i chuy?n tuy?n g?p. Th?i ?i?m này, cháu bé ?ang trong tình tr?ng nguy k?ch, gia ?ình cháu và tr?m y t? l?i không có ph??ng ti?n di chuy?n. N?u ch? xe c?p c?u t? huy?n vào tiên l??ng s? ?nh h??ng ??n tính m?ng c?a cháu bé. Ngay sau khi ti?p nh?n thông tin, Ban ch? huy Công an xã Tá B? ?ã nhanh chóng c? ??i úy P? Xì Po, Phó tr??ng Công an xã s? d?ng xe ô tô chuyên d?ng, nhanh chóng ??a cháu bé ?i c?p c?u. Cùng ?i v?i cháu bé khi ?ó có cán b? y t? và ??i di?n gia ?ình.

Reply
Kristine2024-06-27 4:36 PM

At this time it appears like Expression Engine is the top blogging platform available right now. (from what I've read) Is that what you're using on your blog?

Reply
Josephine2024-06-25 12:56 AM

Quality content is the key to interest the visitors to pay a visit the website, that's what this web page is providing.

Reply
neurontnRib2024-06-23 3:44 PM

Thanks for magnificent info I was looking for this information for my mission.

Reply
StephenAmave2024-06-22 9:48 AM

The other day, while I was at work, my sister stole my iPad and tested to see if it can survive a 40 foot drop, just so she can be a youtube sensation. My iPad is now destroyed and she has 83 views. I know this is totally off topic but I had to share it with someone! avtovladelez.ru/page/4  csaladokert.tarsadalmiinnovaciok.hu/forum/topic/zahry-machinery-equipment/?part=21  worldgonews.ru/page/37  balipraia.com/category/competition/  theholo.net/forum/member.php?9206-sonnick84&tab=activitystream&type=all&page=3 

Reply
neurontno2024-06-22 12:47 AM

Thanks for fantastic info I was looking for this info for my mission.

Reply
StephenAmave2024-06-21 4:43 PM

Good day I am so thrilled I found your blog page, I really found you by error, while I was browsing on Digg for something else, Regardless I am here now and would just like to say thanks for a fantastic post and a all round enjoyable blog (I also love the theme/design), I don’t have time to look over it all at the minute but I have book-marked it and also included your RSS feeds, so when I have time I will be back to read much more, Please do keep up the superb jo. dindersim.com/haberler/page,1,15,513-meslek-dersleri-kazanim-degerlendirme-optik-okuma.html  egkb14.ru/employees/5405/review/?PAGEN_1=63  mobix.com.ua/index.php?links_exchange=yes&page=41  floriann.ru/buket-roz  daynghethanhnien.com/tin-tuc/25-6-2014-hoi-thi-giang-vien-gioi-le-trao-chung-nhan-khoa-dao-tao-giang-vien-tai-cty-dinsen.html 

Reply
neurontnO2024-06-21 2:04 AM

I’m not sure where you’re getting your information, but good topic.

Reply
neurontnMop2024-06-20 7:10 PM

I’m not sure where you’re getting your information, but good topic.

Reply
Joe Gab2024-06-18 9:40 PM

Hello, Our private lending group pantners is seeking interests from genuine and reliable individuals or companies in need of startup capital or business expansion funds. We invite you to take advantage of this opportunity for the benefit of your business. Contact me by email if you are interested, on: joeygab14@gmail.com Thanks Joe Gab Investment Analyst London, Uk

Reply
diplomaxose2024-06-13 10:24 PM

?????????? ??? ???????? ???????????? (?????) ?? ?????????? ?????? ????? ?????? ? ????? ???????. ?????? ??????: ?????? ??????? ??? ?????? ?? ??????. ????? ?????????, ?? ?? ??????? ????????, ????????? ?? ?????? ??????????? ????? ????????? ? ????? ???. ? ????? ?????? ????? 100 ??????????? ??????????? ??????? ?????????? ?????? ? ????? ???????. ? ??????????? ?? ?????? ??????? ??????? ??? ??? ??????????? ????????? ? ?????? ?????????? ????????. - interestbook.ru

Reply
neurontnMa2024-06-12 2:39 AM

Thanks for magnificent info I was looking for this information for my mission.

Reply
OLanekix2024-06-11 2:31 PM

Simply wish to say your article is as amazing. The clarity in your post is simply excellent and i can assume you're an expert on this subject. Well with your permission allow me to grab your feed to keep updated with forthcoming post. Thanks a million and please keep up the gratifying work. ediblehomegardensresort.com/index.php?do=/public/blog/view/id_119635/title_-2024/?  est-m.ru/katalog/ukg/?  dveribiz.ru/shop/vkhodnye-dveri/ekonom-klass/?  worldgonews.ru/page/37?  bn.tobase.ru/viewtopic.php?f=30&t=2717? 

Reply
LewisRar2024-06-08 10:44 PM

Howdy just wanted to give you a brief heads up and let you know a few of the images aren't loading correctly. I'm not sure why but I think its a linking issue. I've tried it in two different browsers and both show the same outcome. forums.worldsamba.org/showthread.php?tid=992935?  drosetourmanila.com/vn/retail_promo.html?  mafia-game.ru/forum/member.php?u=28444?  forexrassia.ru/page/4?  cuscino.vn/danh-muc/san-pham-khac/ruot-goi? 

Reply
Leonardo2024-05-01 4:35 AM

Hello! I just wanted to ask if you ever have any problems with hackers? My last blog (wordpress) was hacked and I ended up losing a few months of hard work due to no back up. Do you have any methods to protect against hackers?

Reply
Janina2024-04-30 5:57 PM

Very nice article, exactly what I wanted to find.

Reply
Sabrina2024-02-11 2:53 PM

Hey there! Would you mind if I share your blog with my twitter group? There's a lot of folks that I think would really enjoy your content. Please let me know. Cheers

Reply
Rogelio2024-02-11 7:41 AM

Currently it seems like Wordpress is the best blogging platform out there right now. (from what I've read) Is that what you're using on your blog?

Reply
Alma2024-02-10 10:38 AM

When some one searches for his vital thing, so he/she wishes to be available that in detail, therefore that thing is maintained over here.

Reply
Luther2024-02-09 6:57 AM

For latest news you have to go to see the web and on web I found this website as a finest site for most recent updates.

Reply
Tammara2024-02-09 12:37 AM

Greetings! I've been following your website for a long time now and finally got the bravery to go ahead and give you a shout out from Humble Texas! Just wanted to mention keep up the great work!

Reply
9kg condenser tumble dryer2021-05-21 4:25 AM

Hi there are using Wordpress for your blog platform? I'm new to the blog world but I'm trying to get started and set up my own. Do you need any coding knowledge to make your own blog? Any help would be greatly appreciated!

Reply
Kickass Torrents2020-02-08 11:25 AM

Nice post. I learn something new and challenging on sites I stumbleupon everyday. It will always be helpful to read through articles from other authors and practice something from other sites.

Reply
Jav HD2019-09-30 3:39 AM

My programmer is trying to persuade me to move to .net from PHP. I have always disliked the idea because of the costs. But he's tryiong none the less. I've been using WordPress on a number of websites for about a year and am anxious about switching to another platform. I have heard fantastic things about blogengine.net. Is there a way I can transfer all my wordpress content into it? Any kind of help would be greatly appreciated!

Reply