В блоке вывожу 3 последние коммента из одной таблицы.
<?php
$result = mysql_query("SELECT * FROM comment_ege ORDER BY date DESC LIMIT 3", $db);
while ($comment = mysql_fetch_array($result))
{
$author = $comment["author"];
$post = $comment["post"];
$text = $comment["text"];
if (strlen($text) > 75 ) {
$text = substr($text, 0, 75).'...';
}
printf("<a href='view_post_ege.php?id=%s'><div class='comment-content2'>
<h6>%s</h6>
<p>%s</p></a>
</div>
",$post,$author,$text);
}
?>
Тут же - только из другой таблицы с другими ссылками
<?php
$result = mysql_query("SELECT * FROM comment_ccuz ORDER BY date DESC LIMIT 3", $db);
while ($comment = mysql_fetch_array($result))
{
$author = $comment["author"];
$post = $comment["post"];
$text = $comment["text"];
if (strlen($text) > 75 ) {
$text = substr($text, 0, 75).'...';
}
printf("<a href='post_ccuz.php?id_ccuz=%s'><div class='comment-content2'>
<h6>%s</h6>
<p>%s</p></a>
</div>
",$post,$author,$text);
}
?>
В таблицах comment_ege и comment_ccuz количество и порядок полей совпадают
Эти комменты хранятся в разных таблицах.
Вопрос - как объединить таблицы в одну если у них разные ссылки
post_ccuz.php
view_post_ege