j-mak Posted January 12, 2011 Share Posted January 12, 2011 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. Quote Link to comment https://forums.phpfreaks.com/topic/224229-quick-help-needed-on-buttons/ Share on other sites More sharing options...
joel24 Posted January 12, 2011 Share Posted January 12, 2011 use CSS. float: left; Quote Link to comment https://forums.phpfreaks.com/topic/224229-quick-help-needed-on-buttons/#findComment-1158565 Share on other sites More sharing options...
j-mak Posted January 12, 2011 Author Share Posted January 12, 2011 Hey thanks for the reply! That put the buttons on the right side of the screen however they appear the same. Thanks. Quote Link to comment https://forums.phpfreaks.com/topic/224229-quick-help-needed-on-buttons/#findComment-1158582 Share on other sites More sharing options...
Rifts Posted January 12, 2011 Share Posted January 12, 2011 display:inline; Quote Link to comment https://forums.phpfreaks.com/topic/224229-quick-help-needed-on-buttons/#findComment-1158584 Share on other sites More sharing options...
j-mak Posted January 12, 2011 Author Share Posted January 12, 2011 That Worked! Thankyou! Quote Link to comment https://forums.phpfreaks.com/topic/224229-quick-help-needed-on-buttons/#findComment-1158590 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.