check if cookie exists php

Solutions on MaxInterview for check if cookie exists php by the best coders in the world

showing results for - "check if cookie exists php"
Laura
22 Feb 2016
1if (!isset($_COOKIE["lg"])) {
2	setcookie("lg", "ro");
3}