I want to do following:
$_SESSION['SESS_VERSION'] = $member['Version'];
session_write_close();
header("location: '$_SESSION['SESS_VERSION']'");
exit();
Now I am getting:
Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING
How to get this value inside the string?
Concatenate the string correctly:
OR
Documentation