john_yourspace
asked on
Php Meta
Hi guys,
I am new to php and hoping some one can tell me what this is / how to access the values contained.
I have done a call on a wordpress database and have the following details returned
I need to split the values out to be accessed mainly the "disabled_access" one which has a value of yes
I do not have a post id and can not obtain one, this is all that is available
John
I am new to php and hoping some one can tell me what this is / how to access the values contained.
I have done a call on a wordpress database and have the following details returned
print_r($event->event_meta);
a:7:{s:22:"default_payment_status";s:10:"Incomplete";s:8:"venue_id";s:1:"1";s:28:"additional_attendee_reg_info";s:1:"2";s:28:"add_attendee_question_groups";a:1:{i:1;s:1:"1";}s:14:"date_submitted";s:18:"September 20, 2011";s:15:"disabled_access";s:3:"yes";s:0:"";s:0:"";}
I need to split the values out to be accessed mainly the "disabled_access" one which has a value of yes
I do not have a post id and can not obtain one, this is all that is available
John
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
Great! Thanks for the points, ~Ray
ASKER