Re: [PHP] Tutorials for Maintenance of State

2004-10-17 Thread Chris Shiflett
--- GH [EMAIL PROTECTED] wrote:
 I know about sessions... but I am even more concerened now about
 the use of cookies but I am not 100% sure on how to accomplish
 this

When you say you are concerned about cookies, what do you mean exactly?

When used properly, cookies can afford a heightened level of security to
users whose preferences allow them. Because they were created with the
specific purpose of adding state to HTTP, they tend to address this
problem the best.

Chris

=
Chris Shiflett - http://shiflett.org/

PHP Security - O'Reilly HTTP Developer's Handbook - Sams
Coming December 2004http://httphandbook.org/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Tutorials for Maintenance of State

2004-10-14 Thread GH
I found it interesting... you did a good job. 

However I am running confused laps in my brain on what do I do to
actually set it up...  I know about sessions... but I am even more
concerened now about the use of cookies but I am not 100% sure on how
to accomplish this

when I was dabbling in ColdFusion a few years ago... this was my main
co(ld)nfusion...  I know i am probably rambiling so

Any advice or starting points would be great



On Tue, 12 Oct 2004 14:12:37 -0700 (PDT), Chris Shiflett
[EMAIL PROTECTED] wrote:
 
 
 --- GH [EMAIL PROTECTED] wrote:
  I would like to know if someone out there has or knows of a tutorial
  on Maintenance of State that allows only users who have logged in to
  successfully visit view pages?
 
 You might find this helpful, if I'm interpreting your question correctly:
 
 http://shiflett.org/articles/the-truth-about-sessions
 
 Hope that helps.
 
 Chris
 
 =
 Chris Shiflett - http://shiflett.org/
 
 PHP Security - O'Reilly HTTP Developer's Handbook - Sams
 Coming December 2004http://httphandbook.org/


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Tutorials for Maintenance of State

2004-10-12 Thread GH
I would like to know if someone out there has or knows of a tutorial
on Maintenance of State that allows only users who have logged in to
successfully visit view pages?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Tutorials for Maintenance of State

2004-10-12 Thread Chris Shiflett
--- GH [EMAIL PROTECTED] wrote:
 I would like to know if someone out there has or knows of a tutorial
 on Maintenance of State that allows only users who have logged in to
 successfully visit view pages?

You might find this helpful, if I'm interpreting your question correctly:

http://shiflett.org/articles/the-truth-about-sessions

Hope that helps.

Chris

=
Chris Shiflett - http://shiflett.org/

PHP Security - O'Reilly HTTP Developer's Handbook - Sams
Coming December 2004http://httphandbook.org/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Tutorials for Maintenance of State

2004-10-12 Thread Jay Blanchard
[snip]
I would like to know if someone out there has or knows of a tutorial
on Maintenance of State that allows only users who have logged in to
successfully visit view pages?
[/snip]

PHP, being server side without a persistent connection to the client, is
stateless. You can use things like cookies and sessions to maintain
pseudo-state. http://www.php.net/session

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Tutorials for Maintenance of State

2004-10-12 Thread Greg Donald
On Tue, 12 Oct 2004 16:43:42 -0400, GH [EMAIL PROTECTED] wrote:
 I would like to know if someone out there has or knows of a tutorial
 on Maintenance of State that allows only users who have logged in to
 successfully visit view pages?

You can store most anything in a PHP session, variables, objects, etc.


-- 
Greg Donald
Zend Certified Engineer
http://gdconsultants.com/
http://destiney.com/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Tutorials for Maintenance of State

2004-10-12 Thread GH
I will look into the into all of the items discussed and probably will
be sending in some questions


On Tue, 12 Oct 2004 16:17:37 -0500, Greg Donald [EMAIL PROTECTED] wrote:
 
 
 On Tue, 12 Oct 2004 16:43:42 -0400, GH [EMAIL PROTECTED] wrote:
  I would like to know if someone out there has or knows of a tutorial
  on Maintenance of State that allows only users who have logged in to
  successfully visit view pages?
 
 You can store most anything in a PHP session, variables, objects, etc.
 
 --
 Greg Donald
 Zend Certified Engineer
 http://gdconsultants.com/
 http://destiney.com/
 
 
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php