Bu kodu vardır, bu kod sorun ve DB RASTGELE Mesajları göstermek için idam edilecek kadar çok zaman alır:
$totalrows = 10;
$sql = "SELECT
posts.Tags as tags,
posts.OwnerUserId as postsid,
posts.Id as postid,
posts.Body as body,
posts.Title as title,
users.Id as userid,
users.DisplayName as usersname
FROM posts
JOIN users ON posts.OwnerUserId = users.Id
WHERE posts.Title != '' order by rand() asc limit " . $totalrows;
$r = mysql_query($sql) or die(mysql_error());
Ben daha quikly rastgele mesajları göstermek için değiştirmeniz gerektiğini söyle lütfen?
Selamlar, Dan