I am working with PHP and MySQL, and would like to update my database when a user enters a new value in a textfield and then presses enter.
And does anyone know of any tutorials/articles on this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can find great tutorials and explanation on http://www.w3schools.com
These are tutorials on how to interact with a MySQL database in PHP:
http://www.w3schools.com/php/php_mysql_update.asp
And these are tutorials on how to interact with an active web page in PHP:
http://www.w3schools.com/php/php_post.asp
If you combine the two, you can achieve what you’re looking for =)