Web Analytics Made Easy -
StatCounter Session Problem - CodingForum

Announcement

Collapse
No announcement yet.

Session Problem

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Session Problem

    Hi Pals!

    In the concept of session,is it possible to clear off one session name among several session names in the page.

    For example,There will be two sessions named as caption and values.I would like to clear off the session named as caption alone and secure the data placed in the session named as values.

    Any help would be appreciated.

    (I tried but the session_unset and session_destroy deactivated both the sessions.)

    Regards
    SATHISH KUMAR
    Winners Never Quit
    Quitters Never Win

  • #2
    PHP Code:
    session_start();
    unset(
    $_SESSION['caption']); 
    Posting guidelines I use to see if I will spend time to answer your question : http://www.catb.org/~esr/faqs/smart-questions.html

    Comment

    Working...
    X