setrawcookie()


 

setrawcookie()

In this example you will learn how to set setrawcookie()in PHP.

In this example you will learn how to set setrawcookie()in PHP.

setrawcookie()

setrawcookie is used to set the cookie like setcookie function but it's cookie value will not automatically be urlencoded when send to the browser. 

Syntax

setrawcookie()

Example:

<?php
$expire=time()+60*60*24*30;
$value ="raj the great";
setrawcookie("cookie", rawurlencode($value), $expire);
echo $_COOKIE["cookie"]; # view one cookie value 
?>

Ads