HTML Ausgabe erzwingen

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • HTML Ausgabe erzwingen

    Hallo Forum,

    ich möchte vor einem Script das länger läuft einen html Code ausgeben. das Script läuft ca. 30sec. Momentan gibt der Browser das html erst aus, nachdem das Script fertig ist.

    BSP

    <html>
    Soll jetzt ausgegeben werden!.
    .
    .
    .</html>
    <Script beginnt>
    .
    .
    .
    <Script endet>

    Ist es möglich die html ausgabe zu erzwingen. Mit flush habe ich das schon probiert, aber das geht nicht.

    Vielleicht weiss jemand von Euch wie das geht.

    Danke und Gruss
    Ronny

  • #2
    Das geht genau mit flush();
    du solltest beachten, dass flush() nicht auf allen Windows server und nicht mit allen Browsern funktioniert.
    Several servers, especially on Win32, will still buffer the output from your script until it terminates before transmitting the results to the browser.

    Server modules for Apache like mod_gzip may do buffering of their own that will cause flush() to not result in data being sent immediately to the client.

    Even the browser may buffer its input before displaying it. Netscape, for example, buffers text until it receives an end-of-line or the beginning of a tag, and it won't render tables until the </table> tag of the outermost table is seen.

    Some versions of Microsoft Internet Explorer will only start to display the page after they have received 256 bytes of output, so you may need to send extra whitespace before flushing to get those browsers to display the page.
    [color="#334D7B"]"Los, lass uns loslegen! Hm ? Quatschen können wir hinterher immer noch!"[/color]
    [color="#9C5245"]"Aber Bommel, wir können jetzt nicht bumsen. Wir müssen doch erst den Kindern - ... "[/color]
    [color="#334D7B"]"Ja ja ja. Du willst immer nur das Eine. Buchstabenzeigen, Buchstabenzeigen - meine Gefühle sind dir wohl scheißegal."[/color]

    © Harald Schmidt

    Kommentar

    Lädt...
    X