Load a new page

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Bruce A. Julseth

    Load a new page

    I have a decision tree where I need to load different pages depending upon
    the conditions. My problem is I don't know how to quit a page and load a new
    page.

    How do I quit one page and start another page?

    Thank you.


  • Jerry Stuckle

    #2
    Re: Load a new page

    Bruce A. Julseth wrote:
    I have a decision tree where I need to load different pages depending upon
    the conditions. My problem is I don't know how to quit a page and load a new
    page.
    >
    How do I quit one page and start another page?
    >
    Thank you.
    >
    >
    >
    header('Locatio n: http://www.example.com/page2.php');
    exit();

    The header() call must be made before any output is sent to the browser.

    Alternatively, you can include() the appropriate file in the current
    script.


    --
    =============== ===
    Remove the "x" from my email address
    Jerry Stuckle
    JDS Computer Training Corp.
    jstucklex@attgl obal.net
    =============== ===

    Comment

    • Bruce A. Julseth

      #3
      Re: Load a new page


      "Jerry Stuckle" <jstucklex@attg lobal.netwrote in message
      news:Ev-dnWU07KfjqnfanZ 2dnUVZ_umlnZ2d@ comcast.com...
      Bruce A. Julseth wrote:
      >I have a decision tree where I need to load different pages depending
      >upon the conditions. My problem is I don't know how to quit a page and
      >load a new page.
      >>
      >How do I quit one page and start another page?
      >>
      >Thank you.
      >
      header('Locatio n: http://www.example.com/page2.php');
      exit();
      >
      The header() call must be made before any output is sent to the browser.
      >
      Alternatively, you can include() the appropriate file in the current
      script.
      >
      >
      --
      =============== ===
      Remove the "x" from my email address
      Jerry Stuckle
      JDS Computer Training Corp.
      jstucklex@attgl obal.net
      =============== ===
      >
      Thanks... Your response "Jolted" my memory. I've used "header" before. I'll
      look at include() and see I can also use it.

      Bruce


      Comment

      Working...