Jump to content

Ex1t

Members
  • Posts

    28
  • Joined

  • Last visited

Everything posted by Ex1t

  1. Ex1t

    Blog in PHP5

    You're right, thanks @rwhite35 its works, thanks, but now how to make post limit, i think for pagination
  2. Ex1t

    Blog in PHP5

    Okay, i fixed that, now this is how site look This is the code <div class="article"> <?php $blog = mysqli_query($con,"SELECT * FROM articles ORDER BY id ASC"); while($row = mysqli_fetch_array($blog)) { $id = $row['id']; $title = $row['title']; $srtext = $row['srtext']; $time = $row['time']; ?> <h1><?php echo $title; ?></h1> <p><small>Published: <?php echo date('m/d/Y',$time); ?> | Author: Admin</small></p> <p><?php echo nl2br($srtext); ?></p> <div class="more"> <a href="articles.php?id=<?php echo $id; ?>"><button>Read more</button></a> </div> </div> <?php } ?> How to style other articles?
  3. I have problem with showing posts from database and pagination I have this tables in database admin (for admin login) articles (for articles) In articles i have id, title, srtext (short text), lgtext (longtext) and time Now i want to display that in index.php page, but i have problems.. I tried to download some simple php blogs, but there is no blogs in PHP5, all are the older versions I tried something like this <?php error_reporting(0); include_once ('admin/includes/config.php'); $sql="SELECT * FROM articles ORDER BY id ASC"; $result = mysqli_query($con, $sql) or die("Error: ".mysqli_error($con)); while($row = mysqli_fetch_array($result)) { echo strtoupper($row['title']); } echo ' <center> <div class="article"> <h1><?php echo strtoupper($row["title"]); ?></h1> <p><small>Published: 7/9/2015</small></p> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p> <div class="more"> <button>Read more</button> </div> </div> </center> '; ?> But dont work.. I forgot to say, i want that when someone press button "read more" to move him to page where is title, time and long text (lgtext in db), can someone help me with this
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.