예제 #1
0
파일: author.php 프로젝트: polycste/my_blog
    echo "<h1>Showing posts written by {$username} </h1> <hr><br>";
}
while ($post = $posts->fetch_assoc()) {
    ?>
                <div class="blog-post">
                    <h2 class="blog-post-title">
                        <a href= "post.php?id=<?php 
    echo $post['id'];
    ?>
"><?php 
    echo $post['title'];
    ?>
</a>
                    </h2>
                    <p class="blog-post-meta"><?php 
    echo $obj->blog_time_format($post['date']);
    ?>
  by <a href="author.php?id=<?php 
    echo $post['user_id'];
    ?>
"> <?php 
    echo $obj->user_name_by_user_id($post['user_id']);
    ?>
 </a></p>
                    <p> <?php 
    echo $obj->read_more($post['post']);
    ?>
  </p>
                    <P> <a href= "post.php?id=<?php 
    echo $post['id'];
    ?>