Home Php PHP Cookies and Sessions Flood protection using cookies Tutorial



PHP Cookies and Sessions Flood protection using cookies Tutorial
Posted on: November 12, 2009 at 12:00 AM
Cookies are an integral part of any good website, learn one application of them here.

PHP Flood Protection using session

     

In the following tutorial we will learn how to stop the undue input from user, to put such kind of constraint you can use the following code. This script prevents users  from flooding (posting excessive useless messages) your shout box, poll, comments area, forum etc. To do this, we have to use session, a valuable part of php

Example 1:

<?php

SESSION_start();

if(isset($_SESSION['view']))

{

if($_SESSION['view']< 5)

{

$_SESSION['view']+=1;

$name=$_POST['name'];

$passwd=$_POST['password'];

if($name=='demo'&& $passwd=='demo')

{

echo "hello $name";

}

else

{

 header('Location:session.html');

}

}

else

{

echo"<br/>Sorry your maximum turn exceed";

session_destroy();

SESSION_start();

$_SESSION['view']=0;

}

}

?>

Output:

If you enter demo in both the text boxes, output will be:

hello demo

Otherwise if maximum turn exceed more than 4 times, output will be:

Sorry your maximum turn exceed

Related Tags for PHP Cookies and Sessions Flood protection using cookies Tutorial:


More Tutorials from this section

Ask Questions?    Discuss: PHP Cookies and Sessions Flood protection using cookies Tutorial  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.