Guest User

Untitled

a guest
Oct 19th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php
  2. function perform_database_action(){
  3. global $wpdb;
  4. $data= array('col1'=>$value1,'col2'=>$value2,'col3'=>$value3);
  5. $format = array('%s','%s','%s');
  6. $wpdb->insert('table_name', $data, $format);
  7. }
  8. ?>
Add Comment
Please, Sign In to add comment