mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-04 16:20:55 +02:00
58 lines
1.5 KiB
XML
58 lines
1.5 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!-- $Revision$ -->
|
|
<refentry id="api.is.valid">
|
|
<refnamediv>
|
|
<refname>is_valid</refname>
|
|
<refpurpose></refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title />
|
|
<methodsynopsis>
|
|
<type>bool</type><methodname>is_valid</methodname>
|
|
<methodparam><type>bool</type><parameter>formvars</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<methodsynopsis>
|
|
<type>bool</type><methodname>is_valid</methodname>
|
|
<methodparam><type>bool</type><parameter>formvars</parameter></methodparam>
|
|
<methodparam choice="opt"><type>string</type><parameter>form</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
Tests if the current form is valid. You MUST supply the form variable array
|
|
to this function, typically $_POST. You can optionally pass a form name as
|
|
the second parameter. Call this after the form is submitted.
|
|
</para>
|
|
¶meter.form;
|
|
<example>
|
|
<title>is_valid</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
SmartyValidate::is_valid($_POST);
|
|
SmartyValidate::is_valid($_POST, 'myform');
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</refsect1>
|
|
</refentry>
|
|
<!-- 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:"../../../../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
|
|
-->
|