[PHP-DB] Re: forced page links...

2002-02-27 Thread Lerp
Hi there :) I use session variables to do this, once the user has logged in and you know they are who they say they are, set a session variable using session_register(isloggedin); $isloggedin = yes; And at the top of every page you want protected simply do a check to see if it is set or not.

[PHP-DB] Re: forced page links...

2002-02-27 Thread jas
Can you accomplish this without having the user logged in? I am unconcerned with whether or not the user has logged in, I simply need the user to not be able to bypass a page with a form to go directly to the end page which will connect and store the form contents into a db. Thanks in advance,

Re: [PHP-DB] Re: forced page links...

2002-02-27 Thread Dan Brunner
Hello!! What I would do is have both the 2 page and the last page on the the same page!! All my pages are only two...a form page and a processing page...that's it However You could also have a variable pass from page to page, like a hidden variable, either in a form, or with

Re: [PHP-DB] Re: forced page links...

2002-02-27 Thread Andrés Felipe Hernández
, February 27, 2002 12:03 AM Subject: [PHP-DB] Re: forced page links... Can you accomplish this without having the user logged in? I am unconcerned with whether or not the user has logged in, I simply need the user to not be able to bypass a page with a form to go directly to the end page

RE: [PHP-DB] Re: forced page links...

2002-02-27 Thread David Redmond
To: [EMAIL PROTECTED] Subject: [PHP-DB] Re: forced page links... Can you accomplish this without having the user logged in? I am unconcerned with whether or not the user has logged in, I simply need the user to not be able to bypass a page with a form to go directly to the end page which will connect