Javascript and PHP - Login Script with hidden buttons - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T20:41:17Z http://stackoverflow.com/feeds/question/7031 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/7031/javascript-and-php-login-script-with-hidden-buttons 3 Javascript and PHP - Login Script with hidden buttons Dennis 2008-08-10T04:00:06Z 2009-09-19T15:06:06Z <p>I have been using PHP and Javascript for building my dads website. He wants to incorporate a login system into his website. I have the design for the login system using PHP, my problem is how do I show buttons if the person is logged in.</p> <p>For Example - You have Home, Products, About Us, and Contact. Well I want to have buttons for Dealer, Distributor, and maybe other information if the user is logged in. So I will have Home, Products, About Us, Contacts, Dealer (if dealer login), Distributor (if distributor login), and so forth. </p> <p>Would Javascript be a good way to do this or would php, maybe even both. Using Javascript to show and hide buttons, and php to check to see which buttons to show.</p> http://stackoverflow.com/questions/7031/javascript-and-php-login-script-with-hidden-buttons/7033#7033 1 Answer by EndangeredMassa for Javascript and PHP - Login Script with hidden buttons EndangeredMassa 2008-08-10T04:02:56Z 2008-08-10T04:02:56Z <p>If you use javascript to hide the buttons, you open a security hole in the application. A malicious user could either disable javascript or apply some of their own to get around your security.</p> <p>I suggest using PHP to chose to either render the buttons or not. I do this in .NET quite often. </p> <p>You should be able to check the user's access on the server-side whenever they try to use a restricted button as well.</p> http://stackoverflow.com/questions/7031/javascript-and-php-login-script-with-hidden-buttons/7087#7087 8 Answer by Christian Lescuyer for Javascript and PHP - Login Script with hidden buttons Christian Lescuyer 2008-08-10T07:59:22Z 2008-08-10T07:59:22Z <p>Regarding security, <strong>you cannot trust what comes from the client</strong>:</p> <ul> <li>The visitor can see all your code (HTML and Javascript, not PHP) and try stuff</li> <li>The visitor may not even use a browser; it's trivially easy to send a request with a script</li> </ul> <p>This means hiding the buttons is good User Interface design (because you can't use them if you are not logged in). But it's not a security feature. The security feature is checking, on the server, that the visitor is logged in before each action that requires it.</p> <p>If you don't intend to show the buttons, it's not useful to send the HTML and images to the browser and then hide them with Javascript. I would check with PHP.</p> http://stackoverflow.com/questions/7031/javascript-and-php-login-script-with-hidden-buttons/7466#7466 0 Answer by grom for Javascript and PHP - Login Script with hidden buttons grom 2008-08-11T01:23:45Z 2008-08-11T01:23:45Z <p>What we have done at my work is have a library the provides functions such as checking if the user is logged in. For example:</p> <pre><code>&lt;?php require_once 'Auth.php'; // output some html if (isLoggedIn()) { echo 'html for logged in user'; } // rest of html </code></pre> <p>For pages that only authenicated users should see, the controller checks if they are logged in and if not it redirects them to the login page.</p> <pre><code>&lt;?php public function viewCustomer($customerId) { if (!isLoggedIn()) redirectToLoginPage(); } </code></pre> http://stackoverflow.com/questions/7031/javascript-and-php-login-script-with-hidden-buttons/7473#7473 4 Answer by Akira for Javascript and PHP - Login Script with hidden buttons Akira 2008-08-11T01:35:58Z 2008-08-11T01:39:47Z <p>In your menu file or w/e you put:</p> <pre><code>&lt;? require 'auth.php' ?&gt; &lt;ul&gt; &lt;li&gt;&lt;a href=""&gt;Home&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href=""&gt;Products&lt;/a&gt;&lt;/li&gt; &lt;? if( loggedin() ): ?&gt;&lt;li&gt;&lt;a href=""&gt;Secret area&lt;/a&gt;&lt;/li&gt;&lt;? endif; ?&gt; &lt;/ul&gt; </code></pre> <p>Then in pages that require auth just do this:</p> <pre><code>&lt;?php require 'auth.php'; require_login(); ?&gt; </code></pre> <p>Where auth.php may contain:</p> <pre><code>&lt;?php function loggedin(){ return isset( $_SESSION['loggedin'] ); } function require_login(){ if( !loggedin() ){ header( 'Location: /login.php?referrer='.$_SERVER['REQUEST_URI'] ); exit; } } ?&gt; </code></pre> http://stackoverflow.com/questions/7031/javascript-and-php-login-script-with-hidden-buttons/26602#26602 0 Answer by buti-oxa for Javascript and PHP - Login Script with hidden buttons buti-oxa 2008-08-25T18:32:29Z 2008-10-15T20:25:19Z <p>Everything that Christian Lescuyer wrote is correct. Notice, however, that he said "I would" and not "you should". The choice is not that easy.</p> <p>First of all, security is not an issue in the choice. You should have security check on server when you execute an action. Which code decides to show/hide the button that leads to the action is irrelevant. </p> <p>That leaves us with only one drawback of doing show/hide logic in Javascript - the HTML sent to user is bigger than necessary. This may not be a big deal.</p> <p>Having show/hide logic in PHP does have a minus, though. The PHP code required is usually a <a href="http://www.codinghorror.com/blog/archives/001155.html" rel="nofollow">tag soup</a>. Akira's code provides a good example of how it is usually done.</p> <p>Corresponding Javascript code would probably look something like this:</p> <pre><code>if (logged()) { elementSecretArea.style.display = "list-item"; } </code></pre> <p>(assuming that elements that could be hidden have display:none by default).</p> <p>This style also allows nice "Ajax" scenario: user sees a page w/o secret area, inputs password, sees the secret area all without refreshing the page.</p> <p>So, if you already have a script that runs when your document load for other reasons, I would seriously consider having show/hide logic there.</p> http://stackoverflow.com/questions/7031/javascript-and-php-login-script-with-hidden-buttons/1446276#1446276 0 Answer by ITGaWD for Javascript and PHP - Login Script with hidden buttons ITGaWD 2009-09-18T18:50:19Z 2009-09-19T15:06:06Z <p>Basically where you have your menu in html, say as a list <code>&lt;ul&gt; &lt;li&gt;Home&lt;/li&gt; &lt;/ul&gt;</code> you add php after <code>&lt;/li&gt;</code> of the last item:</p> <pre><code>&lt;?php if($session-logged_in) { ?&gt; &lt;li&gt;My Account&lt;/li&gt; &lt;?php } ?&gt; </code></pre>