Is it possible to create a table in the Wp database to insert values and change them, or would it block me? I wanted to create a simple table just to validate, insert a number and if necessary to change that number.
Is it possible to create a table in the Wp database to insert values and change them, or would it block me? I wanted to create a simple table just to validate, insert a number and if necessary to change that number.
You need to create a table inside the Wordpress database. You can use the "dbDelta" function to create the table structure and the api "wpdb" for CRUD (Create, read, update and delete occurrences).
I think this should help.