mirror of
https://github.com/php/doc-es.git
synced 2026-03-26 08:22:08 +01:00
git-svn-id: https://svn.php.net/repository/phpdoc/es/trunk@305474 c90b9560-bf6c-de11-be94-00142212c4b1
68 lines
2.0 KiB
XML
68 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: 96c9d88bad9a7d7d44bfb7f26c226df7ee9ddf26 Maintainer: chuso Status: ready -->
|
|
|
|
<chapter xml:id="fdf.examples" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
&reftitle.examples;
|
|
<para>
|
|
Los siguientes ejemplos ilustran cómo se evalúan los datos del formulario.
|
|
<example>
|
|
<title>Evaluar un documento FDF</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
// Abrir fdf a partir de la cadena de entrada que proporciona la propia extensión
|
|
// El formulario pdf contiene varios campos de texto con los nombres
|
|
// volume, date, comment, publisher, preparer, y dos campos checkbox,
|
|
// show_publisher y show_preparer.
|
|
$fdf = fdf_open_string($HTTP_FDF_DATA);
|
|
$volume = fdf_get_value($fdf, "volume");
|
|
echo "El campo volume tiene el valor '<b>$volume</b>'<br />";
|
|
|
|
$date = fdf_get_value($fdf, "date");
|
|
echo "El campo date tiene el valor '<b>$date</b>'<br />";
|
|
|
|
$comment = fdf_get_value($fdf, "comment");
|
|
echo "El campo comment tiene el valor '<b>$comment</b>'<br />";
|
|
|
|
if (fdf_get_value($fdf, "show_publisher") == "On") {
|
|
$publisher = fdf_get_value($fdf, "publisher");
|
|
echo "El campo publisher tiene el valor '<b>$publisher</b>'<br />";
|
|
} else
|
|
echo "No se debe mostrar el campo oublisher.<br />";
|
|
|
|
if (fdf_get_value($fdf, "show_preparer") == "On") {
|
|
$preparer = fdf_get_value($fdf, "preparer");
|
|
echo "El campo preparer tiene el valor '<b>$preparer</b>'<br />";
|
|
} else
|
|
echo "No se debe mostrar el campo preparer.<br />";
|
|
fdf_close($fdf);
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</para>
|
|
</chapter>
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|
|
|