I think I'll need some more help.
I want to make the database entry with this line of code (maybe this is already where I'm doing a mistake?):
Code:
$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "my_table (field1, field2, field3) VALUES (1, 2, 3)");
Now I want this line to be executed upon creating a new thread. So I went and inserted it in the vb_api_content_text add() function, and after it not working I also tried vb_library_content_text add() and a whole lot of other possible functions elsewhere.
However, not once did it actually do a database entry and I would always get this error message from VB in my browser:
Error while saving content: SyntaxError: Unexpected token F
Maybe noteworthy is that while it gave that error message and didn't redirect me to the newly created topic, it did create it nonetheless.
Can you (or someone else) tell what I'm doing wrong? :\