Re: [PHP] Login determines content on page

2002-05-29 Thread Miguel Cruz
On Wed, 29 May 2002, Dr. Indera wrote: I'd to know how difficult it is to achieve the following: Create login page, when the submit button is clicked, the user info is checked against a database as to whether is login info is valid. if it is valid, a page is displayed that lists all of the

[PHP] Login determines content on page

2002-05-28 Thread Dr. Indera
Hello, I'd to know how difficult it is to achieve the following: Create login page, when the submit button is clicked, the user info is checked against a database as to whether is login info is valid. if it is valid, a page is displayed that lists all of the classes that the user has

[PHP] Login determines content on page

2002-05-28 Thread Dr. Indera
Hello, I'd to know how difficult it is to achieve the following: Create login page, when the submit button is clicked, the user info is checked against a database as to whether is login info is valid. if it is valid, a page is displayed that lists all of the classes that the user has

Re: [PHP] Login determines content on page

2002-05-28 Thread Jule
That's all possible using an SQL database (www.mysql.com) just think about the databnse first before you actually make it, i ran into a lot of problems because i just kept adding tables whenever i needed them a good hint is to write scemes of your script and what ylu want to achieve on paper

Re: [PHP] login determines content on page

2002-02-24 Thread William Lovaton
El sáb, 23-02-2002 a las 01:56, jtjohnston escribió: What's the difference between if (isset($submit_happening)) and if $submit_happening) if (isset($var)) evaluates whether $var exists or not if ($var) evaluates de value of $var $var = 1; if(isset($var)) -- TRUE if($var) --

Re: [PHP] login determines content on page

2002-02-22 Thread djo
On Fri, 22 Feb 2002 21:38:16 -0500, you wrote: I'd to know how difficult it is to achieve the following: Create login page, when the submit button is clicked, the user info is checked against a database as to whether is login info is valid. if it is valid, a page is displayed that lists all

Re: [PHP] login determines content on page

2002-02-22 Thread jtjohnston
What's the difference between if (isset($submit_happening)) and if $submit_happening) John [EMAIL PROTECTED] wrote: On Fri, 22 Feb 2002 21:38:16 -0500, you wrote: I'd to know how difficult it is to achieve the following: Create login page, when the submit button is clicked, the user info

Re: [PHP] login determines content on page

2002-02-22 Thread Rasmus Lerdorf
Well, if $submit_happening is set to 0, 0 or false then if($submit_happening) will evaluate to false while if(isset($submit_happening)) will evaluate to true As the documentation (please read http://www.php.net/isset) isset() returns true if the variable exists and false if it doesn't. -Rasmus