tony2001 Mon May 24 03:13:19 2004 EDT
Modified files:
/phpdoc/en/features xforms.xml
Log:
change variable -> varname to fix the build
http://cvs.php.net/diff.php/phpdoc/en/features/xforms.xml?r1=1.1&r2=1.2&ty=u
Index: phpdoc/en/features/xforms.xml
diff -u phpdoc/en/features/xforms.xml:1.1 phpdoc/en/features/xforms.xml:1.2
--- phpdoc/en/features/xforms.xml:1.1 Sun May 23 16:51:39 2004
+++ phpdoc/en/features/xforms.xml Mon May 24 03:13:19 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.1 $ -->
+<!-- $Revision: 1.2 $ -->
<chapter id="features.xforms">
<title>Dealing with XForms</title>
<para>
@@ -49,19 +49,19 @@
</para>
<para>
If you're choosing to work with XForms then you probably want that data as
- XML, in that case, look in <variable>$HTTP_RAW_POST_DATA</variable> where
+ XML, in that case, look in <varname>$HTTP_RAW_POST_DATA</varname> where
you'll find the XML document generated by the browser which you can pass
into your favorite XSLT engine or document parser.
</para>
<para>
If you're not interrested in formatting and just want your data to be loaded
- into the traditional <variable>$_POST</variable> variable, you can instruct
+ into the traditional <varname>$_POST</varname> variable, you can instruct
the client browser to send it as
<literal>application/x-www-form-urlencoded</literal>
by changing the <parameter>method</parameter> attribute to
<emphasis>urlencoded-post</emphasis>.
</para>
<example>
- <title>Using an XForm to populate <variable>$_POST</variable></title>
+ <title>Using an XForm to populate <varname>$_POST</varname></title>
<programlisting role="html">
<![CDATA[
<h:html xmlns:h="http://www.w3.org/1999/xhtml"