CoderFunda
  • Home
  • About us
    • Contact Us
    • Disclaimer
    • Privacy Policy
    • About us
  • Home
  • Php
  • HTML
  • CSS
  • JavaScript
    • JavaScript
    • Jquery
    • JqueryUI
    • Stock
  • SQL
  • Vue.Js
  • Python
  • Wordpress
  • C++
    • C++
    • C
  • Laravel
    • Laravel
      • Overview
      • Namespaces
      • Middleware
      • Routing
      • Configuration
      • Application Structure
      • Installation
    • Overview
  • DBMS
    • DBMS
      • PL/SQL
      • SQLite
      • MongoDB
      • Cassandra
      • MySQL
      • Oracle
      • CouchDB
      • Neo4j
      • DB2
      • Quiz
    • Overview
  • Entertainment
    • TV Series Update
    • Movie Review
    • Movie Review
  • More
    • Vue. Js
    • Php Question
    • Php Interview Question
    • Laravel Interview Question
    • SQL Interview Question
    • IAS Interview Question
    • PCS Interview Question
    • Technology
    • Other

20 November, 2018

$ COOKIE-Superglobal in Hindi

 Programing Coderfunda     November 20, 2018     COOKIE, php     1 comment   


in Hindi - $ COOKIE-Superglobal

What is a Cookie ?

Cookie ये एक text-file होती है | Cookie की size सामान्यतः 4kb तक होती है |
Cookie का Browser में User की कुछ information track करना for example User क्या search कर रहा है, User का Username, Password, User कितने वक्त तक website पर रहता है , User ने Website पर कितनी बार visit दी | Multiple cookies भी set किये जाते है |
For Example, जब User कुछ set किये हुए Cookie Websites पर जाता है जैसे कि, E-commerce websites हो, जब User इन websites को visit करता है या कुछ search करता है, तब वो websites User के browser पर जितनी भी set cookies है उनको user के browser पर store कर देती है | जब cookie store हो जाती है, तब उस websites पर User क्या-क्या activities करता है, ये Websites द्वारा सारी information track कर देता है | तब उस Websites पर recommended information User को Websites के जरिये बता देता है |
For Example, जब User ने किसी भी Website पर कौनसी भी information देखी तो उससे related कोई भी information website पर हो तो User के browser पर दिखाई देती है ये सब cookies की वजह से होता है |
कुछ websites की cookies trusted होती है और कुछ cookies risky होती है जो third-parties से आ जाती है जो User से कुछ personal information track कर लेती है | User के लिए बेहतर रहेगा की वो अपनी browser की third-parties के cookies को access ना करे |

Set Cookie in PHP

PHP में cookie set करने के लिए setcookie() function का इस्तेमाल किया जाता है | setcookie() function में छह parameters होते है |Cookie को <!DOCTYPE html> या <html> से पहले लिखा जाता है |

Syntax for setcookie()

setcookie(name, value, expiry, path, domain, security);

  • name : यहाँ पर cookie का नाम आता है | इस नाम से cookie की value को access किया जाता है |
  • value : यहाँ पर cookie की value आती है | ये value user के computer पर store होती है |
  • expiry : Timestamp format(time()) में यहाँ पर expiry दी जाती है | इस time के बाद cookie accessible नहीं होता | इसकी default value 0 होती है | जब value 0 होती है तब Browser जब exit किया जाता है तब cookie expire हो जाती है |
  • path : Cookie कहा पर available होगा | अगर सिर्फ forward slash(/) दिया जाता है तो website के सभी directories पर वो valid होता है |यहाँ पर "/" default होता है और ये optional होता है |
  • domain : cookie कहा पर available होगा यहाँ वो domain दिया जाता है | इसकी default value जिस domain पर cookie set की जाती है उसका domain यहाँ पर आता है | ये optional होता है |
  • security : यहाँ पर 0(HTTP) और 1(HTTPS) ये दो values दिए जाते है | अगर 1 दिया जाता है तो cookie तभी send की जाती है जब Web server HTTPS इस्तेमाल कर रहा रहा हो | 0(HTTP) यहाँ पर default होता है |

<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script><script> (adsbygoogle = window.adsbygoogle || []).push({}); </script>

Example for Set Cookie(setcookie())

Example में setcookie() function में cookie का नाम 'cookie_name' set किया गया है | cookie की value 'cookie_value' set की गयी है | Cookie की expiry 1 दिन (60(sec)*60(min)*24(hour)) तक दी गई है |
यहाँ पर setcookie() में 'path', 'domain', 'security' default set की जायेगी |
Source Code :
123456789101112<?php
setcookie("cookie_name", "cookie_value", time()+(60*60*24));
?>
<!DOCTYPE html>
<html>
<body>
<?php
echo "Cookie is set.";
?>
</body>
</html>
</pre>
Output :
Cookie is set.

Accessing Cookie in PHP

Cookie को retrieve करने के लिए $_COOKIE इस superglobal का इस्तेमाल किया जाता है |
Source Code :
12345678<!DOCTYPE html>
<html>
<body>
<?php
echo "Cookie Value : ".$_COOKIE["cookie_name"];
?>
</body>
</html>
Output :
Cookie Value : cookie_value

यहाँ पर cookie set है या नहीं है ये देखने के लिए isset() का इस्तेमाल किया जाता है |
Source Code :
<!DOCTYPE html>
<html>
<body>
<?php
if(isset($_COOKIE["cookie_name"])){
echo "Cookie Value is <strong>" . $_COOKIE["cookie_name"] . "</strong>";
}
else{
echo "Cookie is not set.";
}
?>
</body>
</html>
Output :
Cookie Value is cookie_value

Deleting Cookie in PHP

Cookie delete करने के लिए setcookie() function का ही इस्तेमाल किया जाता है | जो cookie delete करनी है उसका सिर्फ नाम और expiry बिता हुआ वक्त दिया जाता है |
Source Code :
1234567891011<?php
setcookie("cookie_name", "", time()-(60*60));
?>
<!DOCTYPE html>
<html>
<body>
<?php
echo "Cookie is deleted";
?>
</body>
</html>
Output :
Cookie is deleted
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg
Email ThisBlogThis!Share to XShare to Facebook

Related Posts:

  • Keep Logs Tidy With the Log Cleaner Package for Laravel ravel Log Cleaner is a package by Joost van Veen for keeping your log files small and tidy. While there are various ways to keep log file size… Read More
  • Generate Migrations from an Existing Database With the Migration Generator Package Laravel Migration Generator Migration Generator for Laravel is a package by Bennett Treptow to generate migrations from existing database structures: … Read More
  • Using Laravel translations in Javascript with the Laravel Translations Loader  Have you ever wanted to use the same Laravel translations you use on the back-end in your front-end code? Laravel Translations Loader is a webpa… Read More
  • Laravel Pretty Routes Console Command Pretty Routes for Laravel is a package to display Laravel routes in the console, but make it pretty: Using this package is simple—install it via com… Read More
  • Scan Machine-Readable Documents with Identity Documents for Laravel  Identity Documents for Laravel is a package that allows you to handle documents like passports and other machine-readable documents. We origin… Read More
Newer Post Older Post Home

1 comment:

  1. UnknownNovember 20, 2019 at 11:16 PM

    I love your Tutorial

    ReplyDelete
    Replies
      Reply
Add comment
Load more...

Thanks

Meta

Popular Posts

  • Vue3 :style backgroundImage not working with require
    I'm trying to migrate a Vue 2 project to Vue 3. In Vue 2 I used v-bind style as follow: In Vue 3 this doesn't work... I tried a...
  • SQL ORDER BY Keyword
      The SQL ORDER BY Keyword The ORDER BY keyword is used to sort the result-set in ascending or descending order. The ORDER BY keyword sorts ...
  • Enabling authentication in swagger
    I created a asp.net core empty project running on .net6. I am coming across an issue when I am trying to enable authentication in swagger. S...
  • failed to load storage framework cache laravel excel
       User the export file and controller function  ..         libxml_use_internal_errors ( true ); ..Good To Go   public function view () : ...
  • AdminJS not overriding default dashboard with custom React component
    So, I just started with adminjs and have been trying to override the default dashboard with my own custom component. I read the documentatio...

Categories

  • Ajax (26)
  • Bootstrap (30)
  • DBMS (42)
  • HTML (12)
  • HTML5 (45)
  • JavaScript (10)
  • Jquery (34)
  • Jquery UI (2)
  • JqueryUI (32)
  • Laravel (1017)
  • Laravel Tutorials (23)
  • Laravel-Question (6)
  • Magento (9)
  • Magento 2 (95)
  • MariaDB (1)
  • MySql Tutorial (2)
  • PHP-Interview-Questions (3)
  • Php Question (13)
  • Python (36)
  • RDBMS (13)
  • SQL Tutorial (79)
  • Vue.js Tutorial (68)
  • Wordpress (150)
  • Wordpress Theme (3)
  • codeigniter (108)
  • oops (4)
  • php (853)

Social Media Links

  • Follow on Twitter
  • Like on Facebook
  • Subscribe on Youtube
  • Follow on Instagram

Pages

  • Home
  • Contact Us
  • Privacy Policy
  • About us

Blog Archive

  • September (100)
  • August (50)
  • July (56)
  • June (46)
  • May (59)
  • April (50)
  • March (60)
  • February (42)
  • January (53)
  • December (58)
  • November (61)
  • October (39)
  • September (36)
  • August (36)
  • July (34)
  • June (34)
  • May (36)
  • April (29)
  • March (82)
  • February (1)
  • January (8)
  • December (14)
  • November (41)
  • October (13)
  • September (5)
  • August (48)
  • July (9)
  • June (6)
  • May (119)
  • April (259)
  • March (122)
  • February (368)
  • January (33)
  • October (2)
  • July (11)
  • June (29)
  • May (25)
  • April (168)
  • March (93)
  • February (60)
  • January (28)
  • December (195)
  • November (24)
  • October (40)
  • September (55)
  • August (6)
  • July (48)
  • May (2)
  • January (2)
  • July (6)
  • June (6)
  • February (17)
  • January (69)
  • December (122)
  • November (56)
  • October (92)
  • September (76)
  • August (6)

  • Failed to install 'cordova-plugin-firebase': CordovaError: Uh oh - 9/21/2024
  • pyspark XPath Query Returns Lists Omitting Missing Values Instead of Including None - 9/20/2024
  • SQL REPL from within Python/Sqlalchemy/Psychopg2 - 9/20/2024
  • MySql Explain with Tobias Petry - 9/20/2024
  • How to combine information from different devices into one common abstract virtual disk? [closed] - 9/20/2024

Laravel News

  • Filament Is Now Running Natively on Mobile - 5/31/2025
  • A Blade-Only Starter Kit for Laravel 12 Projects - 5/30/2025
  • PHPVerse with Brent Roose - 5/30/2025
  • Verify Nested Relations Efficiently with Laravel's Enhanced relationLoaded Method - 5/25/2025
  • ElasticLens: Eloquent-Powered Elasticsearch for Laravel - 5/29/2025

Copyright © 2025 CoderFunda | Powered by Blogger
Design by Coderfunda | Blogger Theme by Coderfunda | Distributed By Coderfunda