i'm trying to teach myself about sessions but i think my php install has a setting messed up or something.
my test script is really simple and it works on another web server so i'm guessing theres just some setting i'm missing.
session_start();
session_register('count');
$count++;
echo $count;
when i go to it it just displays 1 and doesn't increment when i refresh the page.
does anyone know what i'm doing wrong?