Page 1 of 1

Inserting values

Posted: Thu Jun 14, 2007 9:31 am
by kishore_php
I need a help from you all.
How to enter values into database of Oracle 10g from text boxes with php....

Pls help with php code....

I need it immediately...

Posted: Thu Jun 14, 2007 10:44 am
by superdezign
No one is concerned with how quickly you need it. Your question is vague, and has probably been answered a million times. Google databasing for PHP. You're bound to find a nice tutorial that'll walk you through the posting, retrieval, and storage.

Posted: Thu Jun 14, 2007 3:56 pm
by RobertGonzalez

Code: Select all

INSERT INTO tableName (field1, field2) VALUES (value1, value2);
Look into the $_POST array for the form field information.