betz            Thu Aug  1 19:03:35 2002 EDT

  Modified files:              
    /phpdoc/en/reference/outcontrol     reference.xml 
  Log:
  new structure applied
  
  
Index: phpdoc/en/reference/outcontrol/reference.xml
diff -u phpdoc/en/reference/outcontrol/reference.xml:1.2 
phpdoc/en/reference/outcontrol/reference.xml:1.3
--- phpdoc/en/reference/outcontrol/reference.xml:1.2    Mon Apr 15 17:57:12 2002
+++ phpdoc/en/reference/outcontrol/reference.xml        Thu Aug  1 19:03:35 2002
@@ -1,24 +1,55 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
  <reference id="ref.outcontrol">
   <title>Output Control Functions</title>
   <titleabbrev>Output Control</titleabbrev>
 
   <partintro>
-   <para>
-    The Output Control functions allow you to control when output is
-    sent from the script.  This can be useful in several different
-    situations, especially if you need to send headers to the browser
-    after your script has began outputting data.  The Output Control
-    functions do not affect headers sent using
-    <function>header</function> or <function>setcookie</function>,
-    only functions such as <function>echo</function> and data between
-    blocks of PHP code.
-   </para>
-   <para>
-    <example>
-     <title>Output Control example</title>
-     <programlisting role="php">
+   <section id="outcontrol.intro">
+    &reftitle.intro;
+    <para>
+     The Output Control functions allow you to control when output is
+     sent from the script. This can be useful in several different
+     situations, especially if you need to send headers to the browser
+     after your script has began outputting data. The Output Control
+     functions do not affect headers sent using
+     <function>header</function> or <function>setcookie</function>,
+     only functions such as <function>echo</function> and data between
+     blocks of PHP code.
+    </para>
+   </section>
+
+   <section id="outcontrol.requirenments">
+    &reftitle.required;
+    &no.requirement;
+   </section>
+
+   <section id="outcontrol.installation">
+    &reftitle.install;
+    &no.install;
+   </section>
+
+   <section id="outcontrol.configuration">
+    &reftitle.runtime;
+    &no.config;
+   </section>
+
+   <section id="outcontrol.resources">
+    &reftitle.resources;
+    &no.resource;
+   </section>
+
+   <section id="outcontrol.constants">
+    &reftitle.constants;
+    &no.constants;
+   </section>
+
+   <section id="outcontrol.examples">
+   &reftitle.examples;
+    <para>
+     <example>
+      <title>Output Control example</title>
+      <programlisting role="php">
 <![CDATA[
 <?php
 
@@ -31,21 +62,26 @@
 
 ?>
 ]]>
-     </programlisting>
-    </example>
-   </para>
-   <para>
-    In the above example, the output from <function>echo</function>
-    would be stored in the output buffer until
-    <function>ob_end_flush</function> was called.  In the mean time,
-    the call to <function>setcookie</function> successfully stored a
-    cookie without causing an error. (You can not normally send
-    headers to the browser after data has already been sent.)
-   </para>
-   <para>
-    See also <function>header</function> and
-    <function>setcookie</function>.
-   </para>
+      </programlisting>
+     </example>
+    </para>
+    <para>
+     In the above example, the output from <function>echo</function>
+     would be stored in the output buffer until
+     <function>ob_end_flush</function> was called. In the mean time,
+     the call to <function>setcookie</function> successfully stored a
+     cookie without causing an error. (You can not normally send
+     headers to the browser after data has already been sent.)
+    </para>
+   </section>
+
+   <section id="outcontrol.seealso">
+    &reftitle.seealso;
+    <para>
+     See also <function>header</function> and
+     <function>setcookie</function>.
+    </para>
+   </section>
   </partintro>
 
 &reference.outcontrol.functions;



-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to