Hi, I’m new to PHP. i wondering if i’m able to store my session id in mysql db? i know how to get my session id from.
[php]$a = session_id();
if(empty($a)) session_start();
echo "SID: ".SID."
session_id(): ".session_id()."
COOKIE: ".$_COOKIE[“PHPSESSID”];[/php]
but i dunno know how to store the session id in mysql db. kindly show me the way ?
thanks for your help in advance