cmeinck Well-known member Jul 30, 2014 #1 I run an iPhone forum and often I see people post threads using incorrect case. For example, I'll see threads with iphone or Iphone. Is there a mySQL query I could run on thread titles only that would allow me to replace 'iphone' with 'iPhone'?
I run an iPhone forum and often I see people post threads using incorrect case. For example, I'll see threads with iphone or Iphone. Is there a mySQL query I could run on thread titles only that would allow me to replace 'iphone' with 'iPhone'?
AndyB Well-known member Jul 30, 2014 #2 In phpMyAdmin you would enter: UPDATE xf_thread SET title = REPLACE(title, 'iphone', 'iPhone') Upvote 0 Downvote