Hi guys,
i want to know how to set the property of cookie allowing it to be sent and be received only through https protocol (in secure mode).
I had try in this way :
$currentCookieParams = session_get_cookie_params();
session_set_cookie_params($currentCookieParams["lifetime"],$currentCookieParams["path"],$currentCookieParams["domain"], true,true);
Before each and every session_start();
But it seems don't work,someone can help me?
Thanks in advance