Javascript and PHP - Login Script with hidden buttons - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T20:41:17Zhttp://stackoverflow.com/feeds/question/7031http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/7031/javascript-and-php-login-script-with-hidden-buttons3Javascript and PHP - Login Script with hidden buttonsDennis2008-08-10T04:00:06Z2009-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#70331Answer by EndangeredMassa for Javascript and PHP - Login Script with hidden buttonsEndangeredMassa2008-08-10T04:02:56Z2008-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#70878Answer by Christian Lescuyer for Javascript and PHP - Login Script with hidden buttonsChristian Lescuyer2008-08-10T07:59:22Z2008-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#74660Answer by grom for Javascript and PHP - Login Script with hidden buttonsgrom2008-08-11T01:23:45Z2008-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><?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><?php
public function viewCustomer($customerId) {
if (!isLoggedIn())
redirectToLoginPage();
}
</code></pre>
http://stackoverflow.com/questions/7031/javascript-and-php-login-script-with-hidden-buttons/7473#74734Answer by Akira for Javascript and PHP - Login Script with hidden buttonsAkira2008-08-11T01:35:58Z2008-08-11T01:39:47Z<p>In your menu file or w/e you put:</p>
<pre><code><? require 'auth.php' ?>
<ul>
<li><a href="">Home</a></li>
<li><a href="">Products</a></li>
<? if( loggedin() ): ?><li><a href="">Secret area</a></li><? endif; ?>
</ul>
</code></pre>
<p>Then in pages that require auth just do this:</p>
<pre><code><?php
require 'auth.php';
require_login();
?>
</code></pre>
<p>Where auth.php may contain:</p>
<pre><code><?php
function loggedin(){
return isset( $_SESSION['loggedin'] );
}
function require_login(){
if( !loggedin() ){
header( 'Location: /login.php?referrer='.$_SERVER['REQUEST_URI'] );
exit;
}
}
?>
</code></pre>
http://stackoverflow.com/questions/7031/javascript-and-php-login-script-with-hidden-buttons/26602#266020Answer by buti-oxa for Javascript and PHP - Login Script with hidden buttonsbuti-oxa2008-08-25T18:32:29Z2008-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#14462760Answer by ITGaWD for Javascript and PHP - Login Script with hidden buttonsITGaWD2009-09-18T18:50:19Z2009-09-19T15:06:06Z<p>Basically where you have your menu in html, say as a list <code><ul> <li>Home</li> </ul></code> you add php after <code></li></code> of the last item:</p>
<pre><code><?php
if($session-logged_in) {
?>
<li>My Account</li>
<?php
}
?>
</code></pre>