Guest User

Untitled

a guest
Jul 19th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. function my_custom_action(){
  2. $myinput = $_POST['address'];
  3.  
  4. global $wpdb;
  5. $table_name = 'wp44_predefined_address';
  6. $result = $wpdb->get_row("SELECT * FROM wp44_predefined_address WHERE 'UPPER(Address1)' LIKE 'UPPER(%s)'", $myinput);
  7. print_r ($result);
  8. die();
  9. }
Add Comment
Please, Sign In to add comment