Wordpress Event Manager Data Type? -
i trying list of attendees events. maybe there better way this, i'm pulling information directly database. first question, correct approach?
if so, able attendee list following query:
select p.id, p.post_name, pm.meta_value respondents wp_posts p join wp_postmeta pm on pm.post_id = p.id , pm.meta_key = '_transient_tribe_attendees' post_type = 'tribe_events' limit 0, 10 ; problem being, respondent list in weird format i've never seen before. similar to:
a:13:{i:0;a:25:{s:8:"order_id";i:42261;s:8:"purchaser_name";s:14:"john doe";s:15:"purchaser_email";s:15:"jdoe@hotmail.com" etc... what format? potentially serialize json, i'd prefer not reinvent wheel if possible. there parser out there?
Comments
Post a Comment