Align mysql results

Mint

New Member
I'm trying to get the results of my queries to show up like this.\[code\]here here herehere here herehere here here\[/code\]... and so forthBut no matter what I try they end up like this..\[code\]HereHereHereHere \[/code\]and you get the picture... I honestly have tried everything and I can't get it to work.Here's the code ignore my bad coding please :/\[code\]<div class="box"><div style="width: 90%; margin: 0 auto; text-align: center;"><div style="width: 33%; float: left;"><?php$result = mysql_query("SELECT * FROM user_pokemon WHERE belongsto='". $_SESSION{'username'}."'AND (slot='0')");while($row = mysql_fetch_array($result)){ $sql2 = "SELECT * FROM pokemon WHERE name='".$row['pokemon']."'";$result2 = mysql_query($sql2) or die(mysql_error());$battle_get2 = mysql_fetch_array($result2);echo '<img src="http://stackoverflow.com/questions/15801750/pokemon/'.$row['type'] .''.$battle_get2['pic'].'" border=0></a>' ; $idd= mysql_real_escape_string($row['id']);$iddd = strip_tags($idd);?><form name="slot1" action="" method="post"> <p> <select name="A" id="" > <option value="http://stackoverflow.com/questions/15801750/1">Slot 1</option> <option value="http://stackoverflow.com/questions/15801750/2">Slot 2</option> <option value="http://stackoverflow.com/questions/15801750/3">Slot 3</option> <option value="http://stackoverflow.com/questions/15801750/4">Slot 4</option> <option value="http://stackoverflow.com/questions/15801750/5">Slot 5</option> <option value="http://stackoverflow.com/questions/15801750/6">Slot 6</option> </select> <input type="hidden" name="token" id="token" value="http://stackoverflow.com/questions/15801750/<?php echo $iddd ; ?>" /> <br /> <input type="submit" class="submit" value="http://stackoverflow.com/questions/15801750/Add to Team" name="slot1"></p></form><?phpecho $row['pokemon'];?><p></p><?phpecho "Level:";echo $row ['level'];?><p></p><?phpecho "Gender:";echo $row['gender'];echo "<br />";}?></div></div></div>\[/code\]And here is the css I have with it.\[code\].box {width: 90%;background-color: #eaebd8;border: 1px solid #00008B;margin: 0 auto 10px;padding: 10px;}\[/code\]So if I could get some help with this, I would VERY much appreciate it :)
 
Back
Top