U_uR adlı üyeden alıntı: mesajı görüntüle
<?php

mysqle bağlanma kodları..

$sorgu=mysql_Query("select * from wp_posts");
while ($satir=mysql_fetch_assoc($sorgu)){
$post=$satir["post_title"];
$postid=$satir["post_id"]
$postyeni=ucfirst($post);
$sorgu2=mysql_query("update from wp_posts set post_title=$postyeni where post_id=$postid ");
}


muhtemelen bu döngüyü çalıştırırsan olacaktır.
ufak tefek yazım hatalarım olabilir sonuçta forumun cevap editöründe yazdım

--R10.NET; Flood Engellendi -->-> Yeni yazılan mesaj 13:55:55 -->-> Daha önceki mesaj 13:49:44 --

SELECT CONCAT(UPPER(LEFT(post_title, 1)), LOWER(SUBSTR(post_title,2, LENGTH(post_title)))) FROM wp_posts;

bide böyle bişey buldum.. (denemedim)

--R10.NET; Flood Engellendi -->-> Yeni yazılan mesaj 13:57:20 -->-> Daha önceki mesaj 13:55:55 --

son olarakda bir de bunu buldum
teşekkürler hocam ama bu şekilde yaptım çalışmadı.

<?php

include("wp-config.php");
$sorgu=mysql_Query("select * from wp_posts");
while ($satir=mysql_fetch_assoc($sorgu)){
$post=$satir["post_title"];
$postid=$satir["post_id"]
$postyeni=ucfirst($post);
$sorgu2=mysql_query("update from wp_posts set post_title=$postyeni where post_id=$postid ");
}

?>