How to delete multiple rows from mysql database with checkbox using PHP?

后端 未结 4 837
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-16 22:25

I try to delete my data in \"admin\" database, but the delete button does not function.

This is my top part



        
4条回答
  •  -上瘾入骨i
    2021-01-16 23:08

                              'Vendor',
                                    'orderby' => 'user_nicename',
                                    'exclude' => $user_id.',1',
                                    'order' => 'ASC'
                                );
                                $subscribers = get_users($args1);                                        foreach ($subscribers as $user) {
                                    $fvendorck = $wpdb->get_row("select * from wp_vandor where parent_id = '".$user_id."' and child_id = '".$user->id."'");
                                    $isfavvendor = $fvendorck->child_id;
                                 if(!empty($isfavvendor)) {
                                 ?>
                                    
  • headline; ?>
  • headline; ?>

提交回复
热议问题