I can't seem to make sessions work. Perfect Centos 4.3 86_x64 install ispconfig install no problems I am using this simple script Code: <?php session_start( ); ?> <html> <head> <title>test session </title> </head> <body> <?php print "Session number: "; print $PHPSESSID; ?> <br /> <?php session_register("username"); $username = "admin"; print "Your name is: "; print $username; ?> </body> </html> Site config: Shell Cgi Scripts Php Scripts SSI FTP MYSQL SSL The script is in web/foo/script.php Any Help would be great The Idol
Welcome to session number: 448a813333b4d2326ff4361d25b71110 Your name is: admin That worked ?? Why is that The Idol