Re: Test (fwd)

From: Chris Smith <csmith(at)squiz(dot)net>
To: Chadwick Rolfs <c2304182(at)webdevel(dot)urban(dot)csuohio(dot)edu>, <pgsql-php(at)postgresql(dot)org>
Subject: Re: Test (fwd)
Date: 2001-06-14 00:22:43
Message-ID: 4.3.2.7.2.20010614101703.02215160@cooee.cybersydney.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

Write your own function.

function compileinsertquery($table,$formfieldarray,$formfieldvalues) {
$insertquery = "INSERT INTO $table (";
foreach ($formfieldarray as $id => $val) {
$insertquery .= $val.",";
}
$insertquery = substr($insertquery,0,-1); # remove last ,
$insertquery .= ") VALUES (";
foreach ($formfieldvalues as $id => $val) {
$insertquery .= "'".$val."',";
}
$insertquery = substr($insertquery,0,-1); # remove last ,
$insertquery .= ")";
echo "your insert query is ".$insertquery;
}

obviously check it's working ok (this is a 10sec job) before using it.

all done.

And yes, the pg_exec function is the only way to actually manipulate the
database in any way. If you've read the docs, you'd know this.

>To reword.
>
>I am an open source programmer just learning the ropes. I am about
>halfway through the php documentation at zend.com, and can't seem to post
>to the php.lists.net. So I am asking someone here...
>I need to take the entries from several web forms, and put their contents
>into a postresql database. The php function pg_exec is the only way I've
>seen to actually use INSERT.
>Here is my idea: -using arrays
>
>$query = "insert into <table_name> ($names_of_form_fields)
> values
> ($values_of_form_fields);
>
>so there you have it.
>I have been to php.net
>I read documentation religiously
>i'm simply asking for help
>anyone?
>
>
>---------- Forwarded message ----------
>Date: Wed, 13 Jun 2001 15:11:08 -0400 (EDT)
>From: Chadwick Rolfs <c2304182(at)webdevel(dot)urban(dot)csuohio(dot)edu>
>To: pgsql-php(at)postgresql(dot)org
>Subject: Test
>
>I can't seem to post to this list that I keep recieving e-mail from. I
>want to parse a web form through php and put it into a postgresql
>batabase. Who can help? or point me toward the right direction...
>thanks.

----------------------
Chris Smith
http://www.squiz.net/

Browse pgsql-php by date

  From Date Subject
Next Message Adam Lang 2001-06-14 13:44:39 Re: Test
Previous Message Chadwick Rolfs 2001-06-13 23:44:10 Test (fwd)