> know how to implement functions to Insert/Update data registers.  I am a

Not sure you're asking what I'm answering, but...

INSERT/UPDATE are queries, just like SELECT.

So do the same thing you would do for SELECT.

odbc_exec("select * from foo");
odbc_exec("insert into foo(a) values('$a')");
odbc_exec("update foo set a = '$a'");

A query is a query.

The only catch is that the USER you connect as must have
insert/update/whatever permission.

--
WARNING [EMAIL PROTECTED] address is an endangered species -- Use
[EMAIL PROTECTED]
Wanna help me out?  Like Music?  Buy a CD: http://l-i-e.com/artists.htm
Volunteer a little time: http://chatmusic.com/volunteer.htm



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to