Jump to content

Table Colouring help


riddhi

Recommended Posts

Here is the script written in PHP:-

 

<table width="780" border="2" align="center" cellpadding="2" cellspacing="0">

<tr valign="top">

  <td width="150" height="400" id="leftnav">

 

  <style type="text/css">

  <!--

        body {

          background-color: #66FF33;

              }

    -->

  </style>

 

<?php

require_once 'include/leftNav.php';

?>

  </td>

  <td>

<?php

if ($pdId) {

require_once 'include/productDetail.php';

} else if ($catId) {

require_once 'include/productList.php';

} else {

require_once 'include/categoryList.php';

}

?> 

  </td>

  <td width="130" align="center"><?php require_once 'include/miniCart.php'; ?></td>

</tr>

</table>

<?php

require_once 'include/footer.php';

?>

 

I wish to have 3 different colour for the three different part of the table (td).

 

Please help.

Link to comment
https://forums.phpfreaks.com/topic/49633-table-colouring-help/
Share on other sites

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.