Is there a .response for php?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • tofuguy

    Is there a .response for php?

    I was wondering if there was a .response type of method that asp has but is in php.
  • Alvaro G Vicario

    #2
    Re: Is there a .response for php?

    *** tofuguy wrote/escribió (6 Oct 2004 23:31:20 -0700):[color=blue]
    > I was wondering if there was a .response type of method that asp has but is in php.[/color]

    What object does this method belong to in ASP? What's its functionality?

    --
    -- Álvaro G. Vicario - Burgos, Spain
    -- Thank you for not e-mailing me your questions
    --

    Comment

    • Michael Fesser

      #3
      Re: Is there a .response for php?

      .oO(tofuguy)
      [color=blue]
      >I was wondering if there was a .response type of method that asp has but
      >is in php.[/color]

      header() maybe?

      Micha

      Comment

      • Janwillem Borleffs

        #4
        Re: Is there a .response for php?

        tofuguy wrote:[color=blue]
        > I was wondering if there was a .response type of method that asp has but is in php.[/color]

        Have a look at the $_SERVER array.


        JW

        Comment

        • Justin Koivisto

          #5
          Re: Is there a .response for php?

          tofuguy wrote:
          [color=blue]
          > I was wondering if there was a .response type of method that asp has but is in php.[/color]

          OK, you need to realize that some of us have NO IDEA what kind of syntax
          and features that ASP has...

          Therefore, you'd be better off explaining the functionality that you are
          looking for...

          IIRC, someone once said that the header() function was similar to
          response.write - other than that, more details are required.

          --
          Justin Koivisto - spam@koivi.com

          Comment

          • Nikolai Chuvakhin

            #6
            Re: Is there a .response for php?

            s3018564@hotmai l.com (tofuguy) wrote in message
            news:<dfbc17f3. 0410062231.9c6d 9f0@posting.goo gle.com>...[color=blue]
            >
            > I was wondering if there was a .response type of method
            > that asp has but is in php.[/color]

            ???

            If I remember correctly, ASP does not have a .response method,
            it has a Response object...

            Cheers,
            NC

            Comment

            • Zurab Davitiani

              #7
              Re: Is there a .response for php?

              Justin Koivisto wrote:
              [color=blue]
              > tofuguy wrote:
              >[color=green]
              >> I was wondering if there was a .response type of method that asp has but
              >> is in php.[/color]
              >
              > OK, you need to realize that some of us have NO IDEA what kind of syntax
              > and features that ASP has...
              >
              > Therefore, you'd be better off explaining the functionality that you are
              > looking for...
              >
              > IIRC, someone once said that the header() function was similar to
              > response.write - other than that, more details are required.[/color]

              It's more like this:
              Response.Write - print/echo
              Response.AddHea der - header
              Response.End - exit/die
              Response.Flush - ob_flush
              Response.Clean - ob_clean
              Response.Redire ct - header
              etc.

              I agree the OP has to be more specific on what he wants to accomplish.

              Comment

              Working...