tell the browser not to cache the previous pages

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • momogi
    New Member
    • Sep 2007
    • 28

    tell the browser not to cache the previous pages

    Code:
    Response.Cache.SetNoStore();
    I have read in the .Net Forum, that there's a way to tell the browser not to cache the previous pages. I wanna know if PHP have the same way to do this:
    Code:
     Response.Cache.SetNoStore();
    .
    Because I don't know anything about .Net language. And I need to try this because my session doesn't work. My project will finish if I can fix my session (for login).

    Thanks...
  • ak1dnar
    Recognized Expert Top Contributor
    • Jan 2007
    • 1584

    #2
    Take a look at Php headers

    Comment

    • momogi
      New Member
      • Sep 2007
      • 28

      #3
      Originally posted by ajaxrand
      Take a look at Php headers

      Thanks ajaxrand :)

      .....

      Comment

      • ak1dnar
        Recognized Expert Top Contributor
        • Jan 2007
        • 1584

        #4
        Originally posted by momogi
        Thanks ajaxrand :)

        .....
        Welcome anytime, momogi ! :)

        Comment

        Working...