Jump to content

Problem with table space


aerosmith

Recommended Posts

Hello, My first time actually post, but read the great comments ;)

 

My question is the following, my page is having some pretty bad issues with a space at the bottom of a page, everytime i try to ammend the source, it causes more issues, if anyone is able to assist, id be in there debt :)

 

www.thehairoine.com/products_new.php

 

I locate the error around. line 156

<td>'.tep_image(DIR_WS_IMAGES.'1_q3.gif').'</td>

<td style="width:100%">'.tep_draw_separator('spacer.gif', '1', '1').'</td>

<td>'.tep_image(DIR_WS_IMAGES.'1_q4.gif').'</td>

</tr>

</table>

</td>

</tr>

</table>  

 

 

 

 

Source is as follows

=================================================

<?php

/*

  $Id: products_new.php,v 1.27 2003/06/09 22:35:33 hpdl Exp $

 

 

 

 

 

 

*/

 

  require('includes/application_top.php');

 

  require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_PRODUCTS_NEW);

 

  $breadcrumb->add(NAVBAR_TITLE, tep_href_link(FILENAME_PRODUCTS_NEW));

?>

<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">

<html <?php echo HTML_PARAMS; ?>>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>">

<title><?php echo TITLE; ?></title>

<base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>">

<link rel="stylesheet" type="text/css" href="stylesheet.css">

</head>

<body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">

<!-- header //-->

<?php require(DIR_WS_INCLUDES . 'header.php'); ?>

<!-- header_eof //-->

 

<!-- body //-->

<table border="0" width="100%" cellspacing="0" cellpadding="0">

  <tr>

    <td class="col_left">

<!-- left_navigation //-->

<?php require(DIR_WS_INCLUDES . 'column_left.php'); ?>

<!-- left_navigation_eof //-->

    </td>

<!-- body_text //-->

    <td width="100%" class="col_center">

 

<?php  /*  require(DIR_WS_BOXES . 'panel_top.php');  */  ?>

 

<? tep_draw_heading_top();?>

 

<? new contentBoxHeading_ProdNew($info_box_contents);?>

 

<? tep_draw_heading_top_3();?>

 

<?php

  $products_new_array = array();

 

  $products_new_query_raw = "select p.products_id, pd.products_name, p.products_image, p.products_price, p.products_tax_class_id, p.products_date_added, m.manufacturers_name from " . TABLE_PRODUCTS . " p left join " . TABLE_MANUFACTURERS . " m on (p.manufacturers_id = m.manufacturers_id), " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = pd.products_id and pd.language_id = '" . (int)$languages_id . "' order by p.products_date_added DESC, pd.products_name";

  $products_new_split = new splitPageResults($products_new_query_raw, MAX_DISPLAY_PRODUCTS_NEW);

 

  if (($products_new_split->number_of_rows > 0) && ((PREV_NEXT_BAR_LOCATION == '1') || (PREV_NEXT_BAR_LOCATION == '2'))) {

?>

<?php echo tep_draw_result_top(); ?>

<table border="0" cellspacing="0" cellpadding="0" class="result">

          <tr>

            <td><?php echo $products_new_split->display_count(TEXT_DISPLAY_NUMBER_OF_PRODUCTS_NEW); ?></td>

            <td class="result_right"><?php echo TEXT_RESULT_PAGE . ' ' . $products_new_split->display_links(MAX_DISPLAY_PAGE_LINKS, tep_get_all_get_params(array('page', 'info', 'x', 'y'))); ?></td>

          </tr>

        </table>

 

 

 

<?php

  }

?>

<?php

  if ($products_new_split->number_of_rows > 0) {

    $products_new_query = tep_db_query($products_new_split->sql_query);

 

 

 

 

 

 

 

 

 

  $row = 0;

  $col = 0;

  $info_box_contents = array();

  while ($products_new = tep_db_fetch_array($products_new_query)) {

 

$product_query = tep_db_query("select products_description, products_id from " . TABLE_PRODUCTS_DESCRIPTION . " where products_id = '" . (int)$products_new['products_id'] . "' and language_id = '" . (int)$languages_id . "'");

      $product = tep_db_fetch_array($product_query);

 

      $p_desc = substr($product['products_description'], 0, MAX_DESCR_1);

        $p_id = $product['products_id'];

$p_pic = '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products_new['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $products_new['products_image'], $products_new['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a>';

$p_name = '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products_new['products_id']) . '">' . substr( $products_new['products_name'],0,MAX_DESCR_NAME) . '</a>';

 

 

 

  if ($new_price = tep_get_products_special_price($products_new['products_id'])) {

        $products_price = '<s>' . $currencies->display_price($products_new['products_price'], tep_get_tax_rate($products_new['products_tax_class_id'])) . '</s> <span class="productSpecialPrice">' . $currencies->display_price($new_price, tep_get_tax_rate($products_new['products_tax_class_id'])) . '</span>';

      } else {

        $products_price = '<span class="productSpecialPrice">'.$currencies->display_price($products_new['products_price'], tep_get_tax_rate($products_new['products_tax_class_id']).'</span>');

      }

 

$p_price = $products_price;

 

    $products_new['products_name'] = tep_get_products_name($products_new['products_id']);

    $info_box_contents[$row][$col] = array('align' => 'center',

                                          'params' => ' style="width:50%;"',

                                          'text' => '

<table cellpadding="0" cellspacing="0" border="0" style="height:264px; background:#FFFFFF">

<tr>

<td>

<table cellpadding="0" cellspacing="0" border="0">

<tr>

<td>'.tep_image(DIR_WS_IMAGES.'1_q1.gif').'</td>

<td style="width:100%; background-image:url(images/1_li.gif) " class="vam"><span>'.$p_name.'</span></td>

<td>'.tep_image(DIR_WS_IMAGES.'1_q2.gif').'</td>

</tr>

</table>

<table cellpadding="0" cellspacing="0" border="0">

<tr><td style="padding:0px 20px 0px 17px;">

 

<table cellpadding="0" cellspacing="0" border="0">

<tr>

  <td style="height:120px " align="center" class="vam">'.$p_pic.'<br></td>

</tr>

<tr>

<td style=" background:#d2d2d2;">'.tep_draw_separator('spacer.gif', '1', '1').'</td>

</tr>

<tr>

<td style="height:45px; border:1px solid #FFFFFF; border-width:0 0 0 6px" class="vam">

'.$p_desc.'<br>

  </td>

</tr>

<tr>

<td>

<table cellpadding="0" cellspacing="0" border="0" style="height:44px ">

<tr>

<td style="width:121px" align="center" class="vam">'.$p_price.'</td>

<td style="width:121px">

<a href="'.tep_href_link("products_new.php","action=buy_now&products_id=".$p_id).'">'.tep_image_button('button_add_to_cart1.gif').'</a><br>

<br style="line-height:4px">

<a href="' . tep_href_link('product_info.php?products_id='.$p_id) . '">'.tep_image_button("button_details.gif").'</a><br>

</td>

</tr>

</table>

</td>

</tr>

</table>

 

</td></tr>

</table>

<table cellpadding="0" cellspacing="0" border="0">

<tr>

<td>'.tep_image(DIR_WS_IMAGES.'1_q3.gif').'</td>

<td style="width:100%">'.tep_draw_separator('spacer.gif', '1', '1').'</td>

<td>'.tep_image(DIR_WS_IMAGES.'1_q4.gif').'</td>

</tr>

</table>

</td>

</tr>

</table>  

  ');

    $col ++;

    if ($col > 1) {

      $col = 0;

      $row ++;

    }

  }

    new contentBox($info_box_contents);

 

  } else  {

?>

<?php

  }

?>

 

<?php echo tep_draw_result_bottom(); ?>

 

<?php

  if (($products_new_split->number_of_rows > 0) && ((PREV_NEXT_BAR_LOCATION == '2') || (PREV_NEXT_BAR_LOCATION == '3'))) {

?>

<table border="0" width="100%" cellspacing="0" cellpadding="0" class="result">

          <tr>

            <td><?php echo $products_new_split->display_count(TEXT_DISPLAY_NUMBER_OF_PRODUCTS_NEW); ?></td>

            <td class="result_right"><?php echo TEXT_RESULT_PAGE . ' ' . $products_new_split->display_links(MAX_DISPLAY_PAGE_LINKS, tep_get_all_get_params(array('page', 'info', 'x', 'y'))); ?></td>

          </tr>

        </table>

<?php

  }

?>

   

<? tep_draw_heading_bottom_3();?>

 

<? tep_draw_heading_bottom();?>

 

    </td>

<!-- body_text_eof //-->

    <td class="col_right">

<!-- right_navigation //-->

<?php require(DIR_WS_INCLUDES . 'column_right.php'); ?>

<!-- right_navigation_eof //-->

    </td>

  </tr>

</table>

<!-- body_eof //-->

 

<!-- footer //-->

<?php require(DIR_WS_INCLUDES . 'footer.php'); ?>

<!-- footer_eof //--></body>

</html>

<?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>

 

 

Link to comment
https://forums.phpfreaks.com/topic/171075-problem-with-table-space/
Share on other sites

Run that script, then view the source, and copy it here. Put it between code tags (use the # button above the spot where you type your message), and format it so we can read it.

 

Php in the HTML section is pointless, because php is a processing language, whereas you are having troubles with display.

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.