signature16 Posted February 13, 2007 Share Posted February 13, 2007 What is wrong with this? I won't work. session_start(); if(isset($_SESSION['views'])) { $_SESSION['views'] = $_SESSION['views']+ 1; } else {$_SESSION['views'] = 1; echo "views = ". $_SESSION['views']; } Link to comment https://forums.phpfreaks.com/topic/38270-whats-wrong-with-this-easy-session-setup/ Share on other sites More sharing options...
play_ Posted February 13, 2007 Share Posted February 13, 2007 any errors? Link to comment https://forums.phpfreaks.com/topic/38270-whats-wrong-with-this-easy-session-setup/#findComment-183363 Share on other sites More sharing options...
signature16 Posted February 13, 2007 Author Share Posted February 13, 2007 Nope. Just a blank white screen. Link to comment https://forums.phpfreaks.com/topic/38270-whats-wrong-with-this-easy-session-setup/#findComment-183364 Share on other sites More sharing options...
JasonLewis Posted February 13, 2007 Share Posted February 13, 2007 try this: session_start(); if(isset($_SESSION['views'])){ $_SESSION['views'] = $_SESSION['views']+ 1; }else{ $_SESSION['views'] = 1; } echo "views = ". $_SESSION['views']; you echoed then closed the last } Link to comment https://forums.phpfreaks.com/topic/38270-whats-wrong-with-this-easy-session-setup/#findComment-183365 Share on other sites More sharing options...
signature16 Posted February 13, 2007 Author Share Posted February 13, 2007 ah. got it working. thank you, sorry for the n00b question. Link to comment https://forums.phpfreaks.com/topic/38270-whats-wrong-with-this-easy-session-setup/#findComment-183367 Share on other sites More sharing options...
JasonLewis Posted February 13, 2007 Share Posted February 13, 2007 tis ok, you've just gotta look a lot harder. and try re-arranging your code to be like i had it, its a lot neater and easier to see. using tab is good as well. Link to comment https://forums.phpfreaks.com/topic/38270-whats-wrong-with-this-easy-session-setup/#findComment-183369 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.