Pages - পৃষ্ঠাসমূহ

learn php cookie - all simple code are here


Php Cookie

A cookie is often used to identify a user. This cookie embeds on users computer.
When we set the cookie on a page and a user open the page, the cookie stores on user pc who use this page.



Hide Example Show Example

Php cookie Syntax

<<?php
	setcookie(name, value, expire, path, domain); 
?>

Set the cookie

<?php
      setcookie("user", "taslim", time()+3600);
?>

Set your custom Expire date

<?php
      $expire=time()+60*60*24*30;
      setcookie("user", "taslim", $expire);
?>

Cookie use by variable

<?php
      $user="taslim";
      $expire=time()+60*60*24*30; 
 
      etcookie("user",$user ,$expire); 
 
      echo "<\n><\n>";
      echo $_COOKIE["user"];  
 
      echo "<\n><\n>";
      print_r($_COOKIE);
?>

Cookie test

<html>
<body>
    <?php
        if (isset($_COOKIE["user"]))
            echo "Welcome " . $_COOKIE["user"] . "!<\n>";
        else
            echo "Welcome guest!<\n>";
    ?>
</body>
</html> 

Cookie unset

<?php
      $value="taslim";
      setcookie("user", $value, time()-3600);
?> 

What is php Cookie

A cookie is a text-only string that takes a place in the memory of user’s browser. If the lifetime of the cookie is set to be longer than the time user spends at that site, then this string is saved to file for future reference. User could be disabled the cookie in their browser setting.

What is php session


Session values are store in server side not in user’s machine. A session is available as long as the browser is opened. User couldn’t be disabled the session. We could store not only strings but also objects in session.

The Differences between php cookie and php sessions


We got three differences in general.
1. The key difference would be cookies are stored in client side and sessions are stored in server side.
2. The second difference would be cookies can only store strings. We can store our objects in sessions. Storing objects in sessions were really useful according to my experience.
3. Another difference was that we could be save cookie for future reference, but session couldn’t. When users close their browser, they also lost the session.






1 comment:

  1. ديكورات مميزة للواجهات بالحجر الابيض يوجد افضل العروض والخصومات على اسعار حجر هاشمي ابيض ازازي في مصر 2021 من شركة القمة للديكور
    اسعار حجر هاشمي ابيض ازازي في مصر 2021 - القمة للديكور
    احدث اسعار الحجر الهاشمي في مصر لعام 2021
    تعرف علي ما هو جديد اسعار الحجر الفرعوني ومقاسات الحجر الفرعوني الجديدية لعام 2021
    عروض وخصومات على اسعار حجر هاشمي سانت كاترين في مصر 2021 لتشطيب الواجهات في مصر من شركة القمة للمقاولات والديكور
    اسعار حجر هاشمي سانت كاترين في مصر 2021 - القمة للديكور
    كيفية تحديد سعر متر الحجر الفرعوني بالسعر الذي يناسبك في مصر لعام 2021
    اسعار الحجر الهاشمي الابيض الأزازي في مصر بافضل الاسعار للعام الجديد 2021
    تعرف بنفسك على اسعار حجر هاشمي للواجهات الحديثة في مصر ومعرفة المميزات والعيوب بالصور من شركة القمة للديكور
    اسعار حجر هاشمى 2021 - القمة للديكور
    سعر الحجر الفرعوني , اسعارالحجر الفرعوني للواجهات في مصر لعام 2021
    سعر متر الحجر الهاشمي الابيض الأزازي في مصر لعام 2021

    ReplyDelete