saadlive Posted June 2, 2006 Share Posted June 2, 2006 Hi there,I am making a blog and it works perfect except I want to make it so when you log in you can see the private posts and the public can see the public posts.I made a public button on the blog submission form. I also made it in my SQL database for a public yes/no line.Now what should I put in my code to make it so it only shows public ones if you arent logged in and if you are logged in then you can see the private posts.Help? lol Quote Link to comment https://forums.phpfreaks.com/topic/11051-need-help-with-publicprivate-php-button/ Share on other sites More sharing options...
jeremywesselman Posted June 2, 2006 Share Posted June 2, 2006 [code]<?phpif($IsLoggedIn){ //if client is logged in, show all posts $sql = "SELECT * FROM posts";}else{ //if client is not at logged in, show only public posts $sql = "SELECT * FROM posts WHERE public = 'yes'";}?>[/code]Where $IsLoggedIn is a variable that that you set after you log in.[!--coloro:#990000--][span style=\"color:#990000\"][!--/coloro--]Jeremy[!--colorc--][/span][!--/colorc--] Quote Link to comment https://forums.phpfreaks.com/topic/11051-need-help-with-publicprivate-php-button/#findComment-41301 Share on other sites More sharing options...
poirot Posted June 2, 2006 Share Posted June 2, 2006 That's not all, you will have to modify the script that INSERTs the entry; and also create a public/private button. Quote Link to comment https://forums.phpfreaks.com/topic/11051-need-help-with-publicprivate-php-button/#findComment-41303 Share on other sites More sharing options...
jeremywesselman Posted June 2, 2006 Share Posted June 2, 2006 An alternate would be to make a public/private button and write it in the script where you manage your blog posts. This way, you could change the type of post back and forth.[!--coloro:#990000--][span style=\"color:#990000\"][!--/coloro--]Jeremy[!--colorc--][/span][!--/colorc--] Quote Link to comment https://forums.phpfreaks.com/topic/11051-need-help-with-publicprivate-php-button/#findComment-41306 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.