<?php $sql = mysql_query("SLECT * FROM blog"); while($res = mysql_fetch_assoc($sql)){ echo '<echo div class="menu"> Заголовок: '.$res['title'].' / '.date('d.m.y/H:i', $res['time']).'<br />'; echo 'Текст: '.$res['msg'].' | <a href="index.php?act=view;file='.$res['id'].'">Читать всё »</a></div>'; } if($act="view") { $file = (int)$_GET['file']; $res = mysql_fetch_assoc(mysql_query("SLECT * FROM blog WHERE id='.$file.'")); echo '<div class="menu">'; echo 'Заголовок: '.$res['title']; echo 'Текст: '.$res['msg']; echo 'Дата добавления: '.date('d.m.y/H:i', $res['time']).'</div>'; } ?>