Jump to content

location help


shorty3

Recommended Posts

right i have this code

 

<?php
$start = TRUE;
while ($online_array = mysql_fetch_assoc($select2)) {
if ($start) {
  echo "<table width='90'  height='100' class='thinline'><tr><td align='center'  bgcolor='#222222' valign='middle'>";
  echo $online_array['username'];
  echo "<br><img src='".$online_array['image']."' width='70' height='70' border='1'/></td></tr></table>";


  $start = FALSE;

}
else {
  echo "<table width='90'  height='100' class='thinline'><tr><td align='center'  bgcolor='#222222' valign='middle'>";
  echo ' '.$online_array['username'];
  echo "<br><img src='".$online_array['image']."' width='70' height='70' border='1'/></td></tr></table>";
}

}


echo ' were online recently';

?>

 

How can i make it so they go to the side of each other instead of below each other

Link to comment
https://forums.phpfreaks.com/topic/177608-location-help/
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.