Monday 21, May 2012
Welcome Guest, Register | Login  
      Home    |    Tutorials    |    Free Ebooks    |    Free Scripts    |    Articles    |    Blog     |    About Us    |    Contact Us

  setting and retrieving cookies using php

Here is an example to write and retrieve cookies using php. The setcookie() function is used to set a cookie and $_COOKIE variable to retrieve cookie value.
Cut & Paste Script
<?php

$CookieValue = "1234567890";

setcookie("CookieName", $CookieValue );
setcookie("CookieName2", $CookieValue , time()+3600);  //cookie will expire in 1 hour

// Printing value of cookie
echo $_COOKIE["CookieName"];
echo $_COOKIE["CookieName2"];

// Printing values of all cookies
print_r($_COOKIE);

?>
 
   
     RELATED SCRIPTS
 
Email validation using regular expression php
Here is a php script to validate email address. We are using regular expression for validation....more »
Category : PHP Examples Hits : 1010
   
creating new table in MySql using php
Here is an example to create a new table in mysql database....more »
Category : PHP Examples Hits : 657
   
creating xml file using php
Here is a script to create xml file using php DOM....more »
Category : PHP Examples Hits : 555
   
Comparing two arrays using php
This code example will take two arrays and compares 2nd array with 1st. It will show the list of elements which are not found in the first array....more »
Category : PHP Examples Hits : 649
   
Difference Between two dates using php
This function will return the number of days elapsed between two dates....more »
Category : PHP Examples Hits : 559
   
   
SCRIPT CATEGORIES
 
  C Programs
C Programs scripts
  C++ Programs
C++ Programs scripts
  Java Programs
Java Programs scripts
  JavaScript Examples
JavaScript Examples scripts
  PHP Examples
PHP Examples scripts
  VBScript Examples
VBScript Examples scripts
 
 
 
POPULAR E-BOOKS
 
Download How to Make 100 Daily Online  Ebook How to Make 100 Daily Online
   
Download Design and Analysis of Algorithms: Course Notes  Ebook Design and Analysis of Algorithms: Course Notes
   
Download How To Design Programs: An Introduction To Programming and Computing  Ebook How To Design Programs: An Introduction To Programming and Computing
   
Download Advanced Programming for the Java 2 Platform  Ebook Advanced Programming for the Java 2 Platform
   
Download Its An Internet Jungle Out There Ebook Its An Internet Jungle Out There
   
 
Studiesinn.com © 2012 All Rights Reserved.
Website Designed & Developed by TechXprtz