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
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

  • Laravel auth check login
          <?php     Laravel auth check login     use Illuminate\Support\Facades\ Auth ;     if ( Auth :: check()) {         // The use...
  • What is WordPress
      What is WordPress WordPress is a free and open-source  C ontent  M anagement  S ystem (CMS). It is an online site based on PHP and MySQL. ...
  • JqueryUI Tutorial
    JqueryUI Tutorial    JqueryUI is the most popular front end frameworks currently. It is sleek, intuitive, and powerful mobile first fr...
  • window.location.replace() is not working
    just wanna ask why does window.location.replace is not working in my page. I've been working on it for weeks. It works fine on my other ...
  • Laravel after method()
      <?php “laravel after method ()” Gate :: after ( function ( $user , $ability , $result , $arguments ) {     if ( $user -> isSuperAd...

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 (69)
  • 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

  • July (4)
  • 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)

Loading...

Laravel News

Loading...

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