home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 April / PCWorld_2005-04_cd.bin / akce / web / phpnuke / PHP-Nuke-7.5.exe / html / themes / 3D-Fantasy / tables.php < prev    next >
PHP Script  |  2004-01-29  |  2KB  |  46 lines

  1. <?php
  2.  
  3. function OpenTable() {
  4.     echo "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\"><tr>
  5.     <td width=\"15\" height=\"15\"><img src=\"themes/3D-Fantasy/images/up-left2.gif\" alt=\"\" border=\"0\"></td>
  6.     <td background=\"themes/3D-Fantasy/images/up2.gif\" align=\"center\" width=\"100%\" height=\"15\"> </td>
  7.     <td><img src=\"themes/3D-Fantasy/images/up-right2.gif\" width=\"15\" height=\"15\" alt=\"\" border=\"0\"></td></tr>
  8.     <tr>
  9.     <td background=\"themes/3D-Fantasy/images/left2.gif\" width=\"15\"> </td>
  10.     <td bgcolor=\"ffffff\" width=\"100%\">";
  11. }
  12.  
  13. function OpenTable2() {
  14.  
  15.     echo "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tr>
  16.     <td width=\"15\" height=\"15\"><img src=\"themes/3D-Fantasy/images/up-left2.gif\" alt=\"\" border=\"0\"></td>
  17.     <td background=\"themes/3D-Fantasy/images/up2.gif\" align=\"center\" height=\"15\"> </td>
  18.     <td><img src=\"themes/3D-Fantasy/images/up-right2.gif\" width=\"15\" height=\"15\" alt=\"\" border=\"0\"></td></tr>
  19.     <tr>
  20.     <td background=\"themes/3D-Fantasy/images/left2.gif\" width=\"15\"> </td>
  21.     <td bgcolor=\"ffffff\">";
  22. }
  23.     
  24. function CloseTable() {
  25.     echo "</td>
  26.     <td background=\"themes/3D-Fantasy/images/right2.gif\"> </td></tr>
  27.     <tr>
  28.     <td width=\"15\" height=\"15\"><img src=\"themes/3D-Fantasy/images/down-left2.gif\" alt=\"\" border=\"0\"></td>
  29.     <td background=\"themes/3D-Fantasy/images/down2.gif\" align=\"center\" height=\"15\"> </td>
  30.     <td><img src=\"themes/3D-Fantasy/images/down-right2.gif\" width=\"15\" height=\"15\" alt=\"\" border=\"0\"></td></tr>
  31.     </td></tr></table>
  32.     <br>";
  33. }
  34.  
  35. function CloseTable2() {
  36.     echo "</td>
  37.     <td background=\"themes/3D-Fantasy/images/right2.gif\"> </td></tr>
  38.     <tr>
  39.     <td width=\"15\" height=\"15\"><img src=\"themes/3D-Fantasy/images/down-left2.gif\" alt=\"\" border=\"0\"></td>
  40.     <td background=\"themes/3D-Fantasy/images/down2.gif\" align=\"center\" height=\"15\"> </td>
  41.     <td><img src=\"themes/3D-Fantasy/images/down-right2.gif\" width=\"15\" height=\"15\" alt=\"\" border=\"0\"></td></tr>
  42.     </td></tr></table>
  43.     <br>";
  44. }
  45.  
  46. ?>