how to align these three in same line..............show in image
i try this code but now work....with my php code <div style = "text-align:left; float:left;">
any budy tell me my php code is
give me idea if u knw ...........
i try this code but now work....with my php code <div style = "text-align:left; float:left;">
any budy tell me my php code is
PHP Code:
print "<div class='row1'><a rel=\"follow\" href=\"".$config->url."f/".$forum->forumid."/".converturl($forum->name).".html\" title=\"".$forum->description."\">".$forum->name."</a><br/>$forum->description";
print "<center> Topics:".$forum->numtopics."";
print "<br/>Posts:".$forum->numposts."";
if($forum->lastposttime=="" || $forum->lastposttime=="0")
{ $us="Never</center>"; }
else
{
$timepostforum=$forum->lastposttime;
$timepostforum=timez($timepostforum);
$us=$timepostforum."<br/>Last post by: <b><font color=\"#FF00FF\">".getusernamebyid($forum->lastpostid)."</font></b>";
}
print "<br>".$us;
print "</div>";
Comment