Jump to content

Quick help needed on buttons:


j-mak

Recommended Posts

Hey here is my code:

 

<?php

require_once("include/dbcon.php");

 

if (!is_null($dbh))

{

$query = $dbh->prepare("SELECT id,menu FROM tbl_articles WHERE menu_show='1' ORDER BY menu_pio");

$query->execute();

 

if ($query->rowCount())

{

$results = $query->fetchAll(PDO::FETCH_ASSOC);

 

foreach ($results as $result)

echo "<a href=\"index.php?artid=".htmlspecialchars($result["id"])."\">".htmlspecialchars($result["menu"])."</a>";

}

}

?>

 

and this is what it creates: http://i.imgur.com/kN19w.png

 

How do I make the buttons go across the page without starting a new line, what part of this code do I need to edit? Thanks.

Link to comment
https://forums.phpfreaks.com/topic/224229-quick-help-needed-on-buttons/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.