Viewing 1 replies (of 1 total)
  • Plugin Author codepeople

    (@codepeople)

    Hi,

    If you want to deal with the internal date structure, the data is stored into the field “posted_data” of the database table “wp_cpappbk_messages” (“wp_” prefix may be different in your WordPress installation).

    If you want to write your own code to manage the information, the “data” is a serialized PHP associative array, to convert it back into an associative array you can use something like:

    $data = unserialize($row["posted_data"]);

    … then check the key => value from that field.

    Thank you for using the plugin!

    • This reply was modified 2 years, 10 months ago by codepeople. Reason: formatting
Viewing 1 replies (of 1 total)
  • The topic ‘database’ is closed to new replies.