Here's my problem.
I've got a session variable already initialised and set.
I'm trying to re-populate my session var with another value, but it keeps giving me the old session value instead.
session_start();
session_register('type');
//where the var site changes depending on the value the user chose in his form
$type = "$_POST[site]";
//Keeps giving me the old session value !!!
echo($_SESSION["type"]);