$wpdb in php 5.5
There is no difference in this respect between PHP 5.3 and 5.5. The code doesn’t need to change. However, you should still use prepare properly. Like so: $query = $wpdb->prepare( ‘UPDATE wp_building_plan SET sale_price = %s, available = %s, broker_name = %s, broker_email = %s, broker_phone = %s WHERE id = %s’, $sale_price, $available, $broker_name, … Read more