Title: dpolant's Replies | WordPress.org

---

# dpolant

  [  ](https://wordpress.org/support/users/dpolant/)

 *   [Profile](https://wordpress.org/support/users/dpolant/)
 *   [Topics Started](https://wordpress.org/support/users/dpolant/topics/)
 *   [Replies Created](https://wordpress.org/support/users/dpolant/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/dpolant/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/dpolant/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/dpolant/engagements/)
 *   [Favorites](https://wordpress.org/support/users/dpolant/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Bp Group Control] Problem in Installation](https://wordpress.org/support/topic/plugin-bp-group-control-problem-in-installation/)
 *  [dpolant](https://wordpress.org/support/users/dpolant/)
 * (@dpolant)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/plugin-bp-group-control-problem-in-installation/#post-1522090)
 * Try changing bp-group-control to BP-Group-Control. It is possible that I named
   the folder wrong in the plugin, i’ll fix it if that’s the case.
 * Thanks for trying out my plugin, please let me know if anything else is going
   wrong!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [$wpdb->prepare with variable](https://wordpress.org/support/topic/wpdb-gtprepare-with-variable/)
 *  [dpolant](https://wordpress.org/support/users/dpolant/)
 * (@dpolant)
 * [16 years, 4 months ago](https://wordpress.org/support/topic/wpdb-gtprepare-with-variable/#post-1154349)
 * You have to do it like this:
 *     ```
       $strQuery = "UPDATE wp_eventuser_tbl SET fname = %s, lname = %s, active = %d WHERE id = %d";
   
       $wpdb->query($wpdb->prepare( $strQuery, "Steven", "Nowickcow", 0, 10 ) );
       ```
   
 * You can’t set a variable equal to a quoted string plus a list of unquoted values.
   PHP doesn’t understand that you want to move that whole thing as a bunch of different
   arguments for $wpdb->prepare.

Viewing 2 replies - 1 through 2 (of 2 total)