Basic PHP Programming Question:
How can we register the variables into a session?
Answer:
session_register($session_var);
$_SESSION['var'] = 'value';
$_SESSION['var'] = 'value';
Previous Question | Next Question |
How come the code works, but does not for two-dimensional array of mine? | What is the difference between characters 23 and x23? |