can this be done by running a mysql query?
Announcement
Collapse
No announcement yet.
all threads started by a user in a specific forum
Collapse
X
-
I think this works:
Code:SELECT post.pagetext FROM thread LEFT JOIN post ON(post.postid = thread.firstpostid) WHERE thread.postuserid = 1 AND thread.forumid = 2
- Likes 1
-
There are mysql CONVERT() and CAST() functions that convert character set, but I don't know the details of what you'd need to do. It would be something like:
Code:SELECT CONVERT(post.pagetext USING utf8) FROM thread LEFT JOIN post ON(post.postid = thread.firstpostid) WHERE thread.postuserid = 1 AND thread.forumid = 2
Comment
widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
Comment