Hello,
im new to the coding world and need a little help please.
i understand to get a table layout within PHP coding you cannot use basic html..
is there a specific way to get the table to work within PHP? example...
all the PHP works fine its just when the site loads it pushes all the other stuff below it and not keep this column to the right.... help???
im new to the coding world and need a little help please.
i understand to get a table layout within PHP coding you cannot use basic html..
is there a specific way to get the table to work within PHP? example...
Code:
<table width="158" border="0" align="left" cellpadding="0" cellspacing="0">
<tr>
<td><?php require(DIR_WS_BOXES . 'search.php') ?></td>
</tr>
<tr>
<td><?php if ((USE_CACHE == 'true') && empty($SID)) {
echo tep_cache_categories_box();
} else {
include(DIR_WS_BOXES . 'categories.php');
} ?></td>
</tr>
<tr>
<td><?php require(DIR_WS_BOXES . 'whats_new.php'); ?></td>
</tr>
<tr>
<td><?php require(DIR_WS_BOXES . 'information.php');
if (ADSENSE_SHOW == 'true')
{ if ($request_type == NONSSL)
{
/* only show adsense in NON SSL else it causes warning */ ?></td>
</tr>
<tr>
<td><?php include(DIR_WS_BOXES . 'resources.php');
}
}
?></td>
</tr>
<tr>
<td><?php if ($banner = tep_banner_exists('dynamic', 'left_1')) {
}
echo tep_display_banner('static', $banner); ?></td>
</tr>
<tr>
<td><?php require(DIR_WS_BOXES . 'badges.php'); ?></td>
</tr>
</table>
all the PHP works fine its just when the site loads it pushes all the other stuff below it and not keep this column to the right.... help???
Comment