Skip to content
Advertisement

Send data to mysql database

I am trying to replace the data in a MySQL row. I have the code for the user to sign up, and when they sign up they are assigned an id and their “plannerTable” is set to null. I know how to receive the data from the users row, but how do I replace the data in the users “plannerTable”? -Josh If more info is needed I am happy to supply more info.

Code:

JavaScript

Advertisement

Answer

I am assuming that the user id is the table key, meaning that all users have a unique id.

To change the plannerTable you need to execute a query that resembles this:

UPDATE usersTable SET plannerTable = ? WHERE id = ? and pass two items to this query – plannerTable content (whatever it is in your app) and the user id for the user that you want to change.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement