Hello I have a table that has 5 fields, id, name, address, phone, country. I m looking for a way to be able to edit information from the table by using a simple form then re-sending information back to the Database. Any help would be appreciated. Thank you in advance.
You seem to be a complete beginner, so I won't attempt to explain all required stuff that you need for such form, I am too lazy. This is the ugliest (and the only) example that I've found but it might do the job: http://www.phpeasystep.com/mysql/9.html
You need to use UPDATE sql query to change the field in the database once you take the input from the user using your HTML form.
As you can see tables in your database, i can assume your using a database cms Most likely phpmyadmin Editing is as simple as clicking on the edit button. Search is as simple as clicking on the search button and than select %-% if you want to match all with a particular query or just like for identical search query.
Thank you so much, the example you gave worked great. I had to make a lot of changes but over all I can't complain.