WeberDev.com PHP and MySQL Code

LOG IN
BEGINNER GUIDES  |  PHP CLASSES  |  CODE SEARCH  |  ARTICLES SEARCH  |  PHP FORUMS  |  PHP MANUAL  |  PHP FUNCTIONS LIST  |  WEB SITE TEMPLATES
Start typing to search for PHP and MySQL Code Snippets and Articles Search
Submit a code Example / Snippet Submit Your Code
Search Engine Optimization Monitor SEO Monitor
Web Site UpTime Monitor UpTime Monitor
WeberDev's Monthly code contest PHP Code Contest
Your Personal Examples List My Favorite Examples
Your Personal Articles List My Favorite Articles
Edit Account Info Update Your Profile
PHP Code Search
Web Development Forums
Learn MySQL Playing Trivia
PHPBB2 Templates
Web Development Index
PHP Web Logs (BLogs)
Web Development Resources
Web Development Content
PHPClasses
PHP Editor
PHP Jobs
Vision.To Design
Ajax Tutorials
PHP Programming Help
PHP/MySQL Programming
Webmaster Resources
Webmaster Forum
XML meta language
website builder
Submit Site
Forex Trading Online forex trading platform

Go Back Add a Comment Send this example to a friend Add this Article to your personal favoritest for easy future access to your favorite Code Examples and Articles. Submit a code example Print this code example.
BACK ADD A COMMENT SEND TO A FRIEND ADD TO MY FAVORITES ADD CODE EXAMPLES PRINT
Title : Simple Cookie example
Categories : PHP, Beginner Guides, Cookies Click here to Update Your Picture
tedd sperling
Date : Mar 03rd 2006
Grade : 2 of 5 (graded 4 times)
Viewed : 7559
File : 4350.zip
Images : No Images for this code example.
Search : More code by tedd sperling
Action : Grade This Code Example
Tools : My Examples List

  Submit your own code examples 
 

The below code is a simple example of Cookies.

Once the cookie is set, you may read the cookie by accessing cookie2.php for up to 24 hours. After that, the cookie will expire.

To see the example at work, please review:

http://www.xn--ovg.com/cookie <-- set cookie
http://www.xn--ovg.com/cookie/getcookie.php <-- read cookie

tedd


--- copy below and save as cookie1.php -----
<?php

    $user
$_POST['user'];
   
$color = $_POST['color'];
   
$self $_SERVER['PHP_SELF'];

    if( (
$user != null ) and ( $color != null ) )
        {
         
setcookie( "firstname", $user , time() + 86400 );        // 24 hours
         
setcookie( "fontcolor", $color, time() + 86400 );
         
header( "Location:cookie2.php" );
          exit();
        }
?>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
    <meta http-equiv="content-type" content="text/html;charset=ISO-8859-1">
    <title>Stuff by tedd</title>       
</head>

<body>

    <h1>tedd's cookie stuff</h1>

    <hr>

    <form action ="<?php echo( $self ); ?>" method = "post">
   
    Please enter your first name:
    <input type = "text" name = "user"><br><br>
   
    Please choose your favorite font color:<br>
    <input type = "radio" name = "color" value = "Red">Red
    <input type = "radio" name = "color" value = "Green">Green
    <input type = "radio" name = "color" value = "Blue">Blue
    <br><br>
    <input type = "submit" value = "submit">
    </form>

    <br/>
    <hr>   

</body>
</html>
</html>


--- copy below and save as cookie2.php -----
<?php
   
if (isset($_COOKIE['firstname']))
        {
       
$user = $_COOKIE['firstname'];
       
$color= $_COOKIE['fontcolor'];
        }
    else
        {
       
$user $_POST['user'];
       
$color = $_POST['color'];
        }
?>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
    <meta http-equiv="content-type" content="text/html;charset=ISO-8859-1">
    <title>Stuff by tedd</title>       
</head>

<body>

    <h1>tedd's show cookie stuff</h1>
    <hr>
   
    <h2>Hello: <?php echo( $user ); ?> </h2>
    <h2>Your color: <?php echo( $color ); ?> </h2>
   
    <hr>
   
    <br/>
     <?php
   
// Another way to debug/test is to view all cookies

   
echo ("<br/>");
    echo (
"<pre>");
    echo (
"Cookie info:\n");
   
print_r($_COOKIE);
    echo(
"</pre>");
               
   
?>
    <p>
        <a><input type="button" value="back" onclick="history.go(-1)"></a>
    </p>
   
</body>
</html>



A very simple PHP single password cookie based login without usernames.
Categories : PHP, Cookies, Security, Beginner Guides
A flat file counter
Categories : PHP, Cookies, Filesystem, Beginner Guides
Store, retrieve and delete cookies using JavaScript.
Categories : Java Script, Cookies, Beginner Guides, Cookies
PHP4 MYSQL Authentication Script with cookie. Short & Sweet
Categories : Authentication, Apache, Cookies, PHP, MySQL
Introduction to Language Files
Categories : PHP, Filesystem, Beginner Guides
email new items in db
Categories : PHP, Email, Databases, MySQL, Beginner Guides
Authentication script to authenticate users in Active Directory through LDAP.
Categories : LDAP, Authentication, Cookies, PHP
Newbie Notes #8 - A cron trick
Categories : PHP, CURL, Beginner Guides
cookie
Categories : Cookies, PHP
Get the self URL of current page
Categories : PHP, URLs, Beginner Guides
A beginner's session handling class
Categories : PHP, PHP Classes, Sessions, Beginner Guides
PHP Email image generator - hide your email from bots - using the GD Library
Categories : PHP, Graphics, GD image library, Beginner Guides
Db_lib - practical example usage of database abstraction and form validation.
Categories : PHP, Form Processing, PHP Classes, Data Validation, Beginner Guides
Easy alert box pop-up function
Categories : PHP, Java Script, Beginner Guides
How to update selected fields only
Categories : PHP, Databases, Beginner Guides