I have installed a link farm and was trying to install a colume for banners. The problem is instead of adding just a column, some how I also added a row (Please see
http://anhance.com/ussfta)
The original of the table is
if($colcount == 3){
$num_rows % 3 ? $num_rows += 1 : $num_rows;
$num_rows % 3 ? $num_rows += 1 : $num_rows;
$rows = $num_rows / 3;
$rows2 = ($rows * 2);
$html = $main_table . "<tr>\r\n\t\t\t<td ";
$html .= "width=\"33%\" valign=\"top\" class=\"maincats\" ";
$html .= "nowrap=\"nowrap\" align=\"left\">";
$html .= build_cat("0", $rows, $PID);
$html .= "\r\n\t\t\t</td>\r\n\t\t\t<td width=\"33%\" valign=\"top\" ";
$html .= "class=\"maincats\" nowrap=\"nowrap\" align=\"left\">";
$html .= build_cat($rows, $rows, $PID);
$html .= "\r\n\t\t\t</td>\r\n\t\t\t<td width=\"34%\" valign=\"top\" ";
$html .= "class=\"maincats\" nowrap=\"nowrap\" align=\"left\">";
$html .= build_cat($rows2, $rows, $PID);
$html .= "\r\n\t\t\t</td>\r\n\t\t</tr>\r\n\t\t</table>\r\n\r\n";
echo table("100%", "center", "", $html);
}
The code that I have amended is
if($colcount == 3){
$num_rows % 3 ? $num_rows += 1 : $num_rows;
$num_rows % 3 ? $num_rows += 1 : $num_rows;
$rows = $num_rows / 3;
$rows2 = ($rows * 2);
$html = $main_table . "<tr><td>";
include("include/sideleftcol2.php");
$html .="</td>";
$html .= "\r\n\t\t\t<td ";
$html .= "width=\"33%\" valign=\"top\" class=\"maincats\" ";
$html .= "nowrap=\"nowrap\" align=\"left\">";
$html .= build_cat("0", $rows, $PID);
$html .= "\r\n\t\t\t</td>\r\n\t\t\t<td width=\"33%\" valign=\"top\" ";
$html .= "class=\"maincats\" nowrap=\"nowrap\" align=\"left\">";
$html .= build_cat($rows, $rows, $PID);
$html .= "\r\n\t\t\t</td>\r\n\t\t\t<td width=\"34%\" valign=\"top\" ";
$html .= "class=\"maincats\" nowrap=\"nowrap\" align=\"left\">";
$html .= build_cat($rows2, $rows, $PID);
$html .= "\r\n\t\t\t</td>\r\n\t\t</tr>\r\n\t\t</table>\r\n\r\n";
echo table("100%", "center", "", $html);
}