I couldn't register php session from mysql query. Can you tell me what is the correct method to register php session in mysql field. I tried many ways. Still no solution.
$sql=("SELECT email FROM people");
$result=mysql_query($sql);
$email = mysql_fetch_array($result);
echo $email['email'];
//could not register this way
session_register("$email");