+ 2
How to insert values into mysql from php using html forms?
Should the names in html and the field name in table be the same? Can you explain with simple example?
4 Answers
+ 1
No, it doesn't have to be the same.
Try this:
INSERT INTO tablename (columnname1, columnname2) VALUES ($value1, $value2);
+ 4
It's a long process to insert data to mysql and no one can show you a code from here due to limitations.
+ 2
âPratice on PHP and Sql queries
âYou need to understand Database first
+ 1
Okay Thank you