Status
Not open for further replies.

immortalxx

Active Member
609
2009
6
0
Does this query look alright?

Code:
                    $this->DB->do_update( 'forums', array( 
                                            'posts=posts+1', 
                                            'last_post' => $now, 
                                            'last_title' => $post_title, 
                                            'last_id' => $topic_id,
                                            'last_poster_id' => $starter_id, 
                                            'last_poster_name' => $starter_name ),
                                            'id='.$forum_id
                     );
 
20 comments
Status
Not open for further replies.
Back
Top