php - Custom database table query -
so, created custom wp database table (called "wp_my_table"
).
i can create new row or upload values table fine.
but new how values out of table.
below general database structure:
each row gets own id
, has post_id
associated other posts (in example, there 3 different post_id
: 433, 6554, 23)
for query search, want able search rows specific post_id
in descent order:
for example:
- look
post_id
of"433"
- get first 2 rows (order descent date):
id=1, 3
selected - get other info such
contents
let say, there load more
button load next set of data (in case, id=4, 8
).
how know row next set of data , how pull out?
any suggestions appreciated. more interested in php side got js part figured out.
thanks!
i think can try use
$wpdb->get_result('sql query');
method
read this
https://codex.wordpress.org/class_reference/wpdb
your query this: it's not tested code, assumption
you need use
global $wpdb; $rows = $wpdb->get_results( " select id, post_id, contents, date wp_my_table post_id = 433 date desc limit startrow, howmanyrows" ); foreach ($rows $row) { echo $row->post_id; }
Comments
Post a Comment