Pandemikk
03-23-2010, 07:49 AM
I already have a variable assigned to an array fetched from the vB database. But my problem is showing this information neatly on my custom template.
I have all the information stored like so:
$cell[1] .= $battleuser['username'];
$cell[2] .= $battlewinsc . $battleuser['bs_wins'] . "</font>-<font color=\"red\">" . $battleuser['bs_losses'] . "</b></font>";
$cell[3] .= $totalscore;
$cell[4] .= $winpercolor . $winpercent . "%</font></b>";
$cell[5] .= "<a href=\"private.php?do=newpm&u=$battleuser[userid]\"><i>Contact</i></a><br />";
but when putting $cell[] in my custom template the information is just a mess and there's no way for me, that I know of, to use HTML or CSS to fix it.
I tried using print_cell_row via require_once and while this showed the information neatly, it showed it at the top of the forum above the logo and I could not find a way to move it.
Any suggestions?
I have all the information stored like so:
$cell[1] .= $battleuser['username'];
$cell[2] .= $battlewinsc . $battleuser['bs_wins'] . "</font>-<font color=\"red\">" . $battleuser['bs_losses'] . "</b></font>";
$cell[3] .= $totalscore;
$cell[4] .= $winpercolor . $winpercent . "%</font></b>";
$cell[5] .= "<a href=\"private.php?do=newpm&u=$battleuser[userid]\"><i>Contact</i></a><br />";
but when putting $cell[] in my custom template the information is just a mess and there's no way for me, that I know of, to use HTML or CSS to fix it.
I tried using print_cell_row via require_once and while this showed the information neatly, it showed it at the top of the forum above the logo and I could not find a way to move it.
Any suggestions?