If the data you placed at the beginning of your question is the result of your database query (I’m unsure by how your question is worded), you will want to take that query result and use the PHP function unserialize()
to convert that data to an array, then you can access your data from that array.
Your serialized data will become at array that looks like this:
Array
(
[0] => Array
(
[wwsd_percent_discount] => 10
[wwsd_minimum_discount_qrt] => 20
)
[1] => Array
(
[wwsd_percent_discount] => 20
[wwsd_minimum_discount_qrt] => 50
)
[2] => Array
(
[wwsd_percent_discount] => 30
[wwsd_minimum_discount_qrt] => 100
)
)
Related Posts:
- How to return number of found rows from SELECT query
- Can i use php sql functions instead of $wpdb?
- $wpdb->get_results(…) returns empty array despite correct query
- $wpdb->delete column values IN ARRAY()?
- wpdb::prepare was called incorrectly
- Custom query to get post names beginning with a digit
- queries inside of a class
- How to display only first value of database column in WordPress
- Print out WordPress user ID – two sites with same code but different output
- WPDB: how to get the value of a field in a custom database table
- Can’t use get_results() in ajax query
- PHP syntax error when using wpdb update?
- “The plugin generated 2694 characters of unexpected output…” on Plugin activation, CREATE TABLE sql command not working
- Export WordPress Table to CSV from page
- WordPress get pagination on wpdb get_results
- Ajax $wpdb not returning table data
- Converting MYSQL to WordPress $WPDB
- How to Fetch values from WP database based on selected option value by onchange using PHP?
- Custom field value not saving when it contains a URL?
- $wpdb->flush(); breaks the loop
- Call External Object in Class Function During Callback
- Why is variable not working on custom sql query using wpdb?
- Show MySQL errors that occur when I excute $wpdb->insert()
- Get stock by custom meta field on all Woocommerce variable products
- Any possible way to make $wpdb->get_results() return anything else than array?
- database interactions using OOP
- how to delete 30 day old data using PHP [closed]
- Echo a hierarchical list of post data from custom fields
- Display fields as values in array from external SQL DB
- Can’t get wp_insert_post to work
- Trying to establish connection to External Database
- Getting id of poll from WP database
- How to insert a single row to WP database table?
- WSoD being caused by this piece of code
- I want to select the from values from database in WordPress? [closed]
- $wpdb->update with multiple parameters gives error
- Querying wpdb using PHP
- How to VAR_DUMP a $variable during checkout process (Is my product meta callable?)
- Update results, Before deleting the related category [closed]
- Seach custom post type posts only by meta fields?
- How WordPress reacts to a lack of memory of the server [closed]
- wpdb php get_var query to get ID for URL image doesn’t work for ID over 999
- wp query foreach deleting record returning only first or last item
- Sort meta-value in the sequence array in pre_get_post
- Database query works fine outside WordPress
- Using $wpdb (WPDB class) ‘replace’ with multiple WHERE criteria problem
- $wpdb->insert() does not Insert record in a table
- Help with a $wpdb MySQL Query
- Fatal error: Call to a member function query() on a non-object
- Grouping posts by a custom meta value
- Custom array from a query only write the last row of the query
- Find a way to retrive data updated through metabox plugin to web page
- Error using WordPress $wpdb object to get result from custom table
- How to retrieve the data from the sever and displaying it in a page?
- Querying Database with wpdb
- $wpdb returns duplicate posts
- Can’t update multiple rows with $wpdb query
- Mixing variables into an array when inserting values
- How to use array in function to get only value I want
- Wpdb->insert() doesn’t insert new row after the last one
- how to get serialized post meta
- How to update and save user metadata on page visits?
- Use $wpdb or other PHP script method to find/replace in WP database
- How can I add a new row in a separate database when someone registers via WordPress?
- Basic wpdb update question
- I can’t update my data through $wpdb
- wpdb Cannot Update column in Database
- Using the same shortcode to show any table from the database
- AJAX with Selectbox Plugins (Select2, Chosen, Selectize)
- Get null from POST
- Querying multiple meta_keys in WordPress SQL query
- MySQL database migration to WordPress
- Fetching wpdb data from a php file seems to break?
- How do you get a reference to $wpdb in a PHP script
- Insert into db with foreach problem
- posts_clauses drop ACF get_field function
- How to display inputted data in Ajax without button or click event
- WordPress Query -> Ajax Query
- how to display tables via ajax
- How do I empty a specific meta_value for all users in PHP
- Changing regular db connection to $wpdb
- Can’t send form data to wpdb when URL has query string
- inner-wrap div pushing custom table far down on page
- use wpdb object on other file
- $wpdb how to make a record lookup
- How to get data (not value or name) from radio options to POST to database
- Error resetting database index using ALTER TABLE in $wpdb->query
- I have an error WordPress database error: [You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version
- Search custom post type posts only by meta fields?
- Warning: Undefined property: wpdb::$question_overview in C:\Wamp.NET\sites\proxyvragenmodule\wordpress\wp-includes\class-wpdb.php
- WordPress / PHP: Check if column has value and then check if value in array
- Putting form result in my database
- SQL – How to echo out inside of where statement
- How can I update a value of a field depending on outside source?
- $wpdb->insert writes a record twice for some reason, when my custom developed plugin calls my class function once
- How to properly prepare a column name if passed to a stored procedure?
- Function wpdb::prepare was called incorrectly. The query argument of wpdb::prepare() must have a placeholder
- get_var not returning a value when the field contains an apostrophe
- How to connect wordpress with db using ssl client certificate
- Trouble getting wpdb to work – first time