mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-19 18:38:55 +00:00

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@146503 c90b9560-bf6c-de11-be94-00142212c4b1
76 lines
2.5 KiB
XML
76 lines
2.5 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!-- $Revision: 1.10 $ -->
|
|
<!-- splitted from ./en/functions/pgsql.xml, last change in rev 1.80 -->
|
|
<refentry id='function.pg-insert'>
|
|
<refnamediv>
|
|
<refname>pg_insert</refname>
|
|
<refpurpose>
|
|
Insert array into table.
|
|
</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>Description</title>
|
|
<methodsynopsis>
|
|
<type>bool</type><methodname>pg_insert</methodname>
|
|
<methodparam><type>resource</type><parameter>connection</parameter></methodparam>
|
|
<methodparam><type>string</type><parameter>table_name</parameter></methodparam>
|
|
<methodparam><type>array</type><parameter>assoc_array</parameter></methodparam>
|
|
<methodparam choice="opt"><type>int</type><parameter>options</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
<function>pg_insert</function> inserts the values of <parameter>assoc_array</parameter>
|
|
into the table specified by <parameter>table_name</parameter>.
|
|
<parameter>table_name</parameter> must at least have as many columns as
|
|
<parameter>assoc_array</parameter> has elements. The fieldnames as
|
|
well as the fieldvalues in <parameter>table_name</parameter>
|
|
must match the indices and values of <parameter>assoc_array</parameter>.
|
|
&return.success;
|
|
If <parameter>options</parameter> is specified, <function>pg_insert</function>
|
|
is applied to <parameter>assoc_array</parameter> with specified option.
|
|
</para>
|
|
<para>
|
|
<example>
|
|
<title><function>pg_insert</function> example</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$dbconn = pg_connect('dbname=foo');
|
|
// This is safe, since $_POST is converted automatically
|
|
$res = pg_insert($dbconn, 'post_log', $_POST);
|
|
if ($res) {
|
|
echo "POST data is successfully logged\n";
|
|
} else {
|
|
echo "User must have sent wrong inputs\n";
|
|
}
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</para>
|
|
&warn.experimental.func;
|
|
<para>
|
|
See also <function>pg_convert</function>.
|
|
</para>
|
|
</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
|
|
-->
|