Php-mysql Course

Cookies are a way for a server to store information on the user's computer.
A cookie is a small file that the server embeds on the hard drive of the user's computer (it is limited to about 4 KB of total data). Each time the same computer accesses a page with the same browser, it will send the cookie too.

Setting cookies

To set (create) a cookie with PHP, use setcookie() function.
  - Syntax:
setcookie(name, value, expire, path, domain, secure)
"name" - The name of the cookie
"value" - The value of the cookie
"expire" - A Unix timestamp (in number of seconds since 1970) when the cookie expire. You can set this with the "time()" function plus the number of seconds before you want it to expire. If set to 0, or omitted, the cookie will expire when the browser closes.
"path" - The path on the server in which the cookie will be available on. The default value is the current directory that the cookie is being set in. If set to "/", the cookie will be available within the entire web site.
"domain" - The domain that the cookie is available to. For example, to make the cookie available on all subdomains of coursesweb.net (including https://coursesweb.net itself) then you'd set it to '.coursesweb.net'.
"secure" - If set to TRUE, the cookie should only be transmitted over a secure HTTPS connection.
- Only the "name" is required, the rest of parameter are optional.

  Important - cookies must be sent before any output from your PHP script. The setcookie() function must be placed prior to any output, including <html> tags as well as any whitespace.
On success returns TRUE, but if output exists prior to calling this function, setcookie() will fail, return FALSE and warning error (headers already sent ...).

  - Example (sets 3 cookies: "cookie_name1", "cookie_name2" and "cookie_name3"; with a value of "I AM", and different expiration times):
<?php
$value = 'I AM';
$one_hour = 3600;
$one_week = 60*60*24*7;

setcookie("cookie_name1", $value);                               // expire when the browser closes
setcookie("cookie_name2", $value, time()+$one_hour);             // expire in 1 hour
setcookie("cookie_name3", $value, time()+$one_week, "/");        // expire in 1 hour (available within the entire web site)
?>

<html>
...

Retrieve a Cookie Value

To retrieve (access) a value from a cookie, you only need to refer to the $_COOKIE superglobal variable, using the cookie name as the key.
The value of the cookie is automatically URLencoded when sending the cookie, and automatically decoded when received.
To find out if a cookie has been set, use the isset() function.
  - Example:
<?php
if (isset($_COOKIE['cookie_name'])) {
  // get and output the value of "cookie_name"
  $cookie_val = $_COOKIE['cookie_name'];
  echo $cookie_val;
}
else {
  echo 'The cookie: cookie_name is not set';
}

// get and output all cookies for the current website
$cookie_all = print_r($_COOKIE, true);
echo $cookie_all;
?>

print_r($var) displays information about $var variable, but when TRUE is added, print_r($var, true) returns the information rather than print it, and can be transfered to a variable.


• You cannot set and access a cookie in the same page until the setting page has been reloaded or another page has been accessed.

Deleting cookies

To delete a cookie, just set its expiration date in the past.
  - Example :
<?php
setcookie("cookie_name", "", time()-3600);
?>

<html>
...
When deleting a cookie, if you set the "path" and "domain" in the creation cookie, use them again in the deletion cookie.

Cookies are not an indicated way to store information, the user can any time delete them or set its browser to not accept cookies.

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
What attribute makes a radio button or checkbox input selected?
checked="checked" selected="selected" disabled="disabled"
<input type="checkbox" name="a_name" value="value" checked="checked" />
What CSS value scales the background image to the largest size contained within the element?
repeat-x contain linear-gradient
#id {
  background:url("path_to_image.png");
  background-size:contain;
  background-repeat:no-repeat;
}
What operator is used to determine the rest of the division of two numbers?
% * /
var rest8_7 = 8 % 7;
alert(rest8_7);
Indicate the PHP function that rounds a number up to the next highest integer.
floor() ceil() abs()
$nr = ceil(3.5);
echo $nr;        // 4
PHP Cookies

Last accessed pages

  1. Check the file type before Upload (9307)
  2. SHA1 Encrypt data in JavaScript (35501)
  3. Ajax-PHP File Manager (10274)
  4. Contact page - CoursesWeb (48922)
  5. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (140495)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (70)
  2. Read Excel file data in PHP - PhpExcelReader (11)
  3. ActionScript 3 Lessons (7)
  4. The Mastery of Love (7)
  5. PHP-MySQL free course, online tutorials PHP MySQL code (6)