Need help with entering data into my database

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
mechmaker
Forum Newbie
Posts: 1
Joined: Sat Oct 30, 2004 4:37 pm

Need help with entering data into my database

Post by mechmaker »

Ive been trieng to enter info into my database for the longest but I cant can someone pls reply with code for entering data in a data base that will actually work. PLEASE, I have a Database and I just want to enter atlleast one letter into it using php please help me.
User avatar
John Cartwright
Site Admin
Posts: 11470
Joined: Tue Dec 23, 2003 2:10 am
Location: Toronto
Contact:

Post by John Cartwright »

Search these forums

[devnet]connecting to database[/devnet]

and

[devnet]inserting into database[/devnet]
User avatar
mudkicker
Forum Contributor
Posts: 479
Joined: Wed Jul 09, 2003 6:11 pm
Location: Istanbul, TR
Contact:

Post by mudkicker »

Code: Select all

INS-ERT INTO table(col1, col2) VALUES('val1', 'val2');
Post Reply