Inserting values

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
kishore_php
Forum Newbie
Posts: 1
Joined: Thu Jun 14, 2007 9:19 am

Inserting values

Post 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...
User avatar
superdezign
DevNet Master
Posts: 4135
Joined: Sat Jan 20, 2007 11:06 pm

Post 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.
User avatar
RobertGonzalez
Site Administrator
Posts: 14293
Joined: Tue Sep 09, 2003 6:04 pm
Location: Fremont, CA, USA

Post by RobertGonzalez »

Code: Select all

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