Files
archived-doc-pt-br/reference/fdf/examples.xml
Fernando Wobeto 7a89ed45dc Tradução em reference/fdf (#693)
* inslusão dos arquivos originais com revisão atualizada

* Tradução em fdf

* Update examples.xml

* Update book.xml

* Update configure.xml

* Update setup.xml
2024-09-16 14:09:35 -03:00

67 lines
2.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 96c9d88bad9a7d7d44bfb7f26c226df7ee9ddf26 Maintainer: fernandowobeto Status: ready --><!-- CREDITS: fernandowobeto -->
<chapter xml:id="fdf.examples" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.examples;
<para>
Os exemplos a seguir mostram apenas a avaliação dos dados do formulário.
<example>
<title>Avaliando um documento FDF</title>
<programlisting role="php">
<![CDATA[
<?php
// Abre fdf a partir da string de entrada fornecida pela extensão
// O formulário pdf continha vários campos de texto de entrada com os nomes
// volume, date, comment, publisher, preparer, e duas caixas de seleção
// show_publisher e show_preparer.
$fdf = fdf_open_string($HTTP_FDF_DATA);
$volume = fdf_get_value($fdf, "volume");
echo "O campo volume tem o valor '<b>$volume</b>'<br />";
$date = fdf_get_value($fdf, "date");
echo "O campo date tem o valor '<b>$date</b>'<br />";
$comment = fdf_get_value($fdf, "comment");
echo "O campo comment tem o valor '<b>$comment</b>'<br />";
if (fdf_get_value($fdf, "show_publisher") == "On") {
$publisher = fdf_get_value($fdf, "publisher");
echo "O campo publisher tem o valor '<b>$publisher</b>'<br />";
} else
echo "O publisher não deve ser mostrado.<br />";
if (fdf_get_value($fdf, "show_preparer") == "On") {
$preparer = fdf_get_value($fdf, "preparer");
echo "O campo preparer tem o valor '<b>$preparer</b>'<br />";
} else
echo "O preparer não deve ser mostrado.<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
-->