How i can Stream with PHP?

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

    How i can Stream with PHP?

    Hello,
    i have see i Chat. But the chat have no reload, its stream. In PHP? How do it works? How can i make so a stream? HELP
  • Steve

    #2
    Re: How i can Stream with PHP?

    You will need a client-side application to initiate the 'stream'.
    Either an AJAX widget or maybe a Flash Remoting app with AMFPHP.
    Whatever it is, it will need to send out http requests at regular
    intervals to grab the chat.

    Comment

    • d

      #3
      Re: How i can Stream with PHP?

      "Steve" <schigh@comcast .net> wrote in message
      news:1144159486 .480591.224350@ i39g2000cwa.goo glegroups.com.. .[color=blue]
      > You will need a client-side application to initiate the 'stream'.
      > Either an AJAX widget or maybe a Flash Remoting app with AMFPHP.
      > Whatever it is, it will need to send out http requests at regular
      > intervals to grab the chat.[/color]

      Or use one document which is slowly loaded by the webserver, containing the
      streaming data. The document (iframe, object, whatever) can be set to
      automatically refresh should the document finish loading, thereby restarting
      the streaming connection.


      Comment

      Working...