Round Corner Stone/Icon (rcsi) V1.0
Enhance the table with round corner stone!
www.tjgy.com

SOURCE OF THIS EXAMPLE PAGE
<?
//This is a handy function to give the existing table the round corners
function frameit($text,$color,$s) {
        if ( !$s )
                $s=8;
        $table="<table width=100 border=0 cellpadding=0 cellspacing=0 bgcolor=#$color>
 <tr>
  <td align=left valign=top> <img src=corner.html?lt=1&s=$s&ci=$color&co=eeeeee> </td>
  <td> <img src=onepix.html> </td>
  <td align=right valign=top> <img src=corner.html?rt=1&s=$s&ci=$color&co=eeeeee> </td>
 </tr>
 <tr><td colspan=3 nowrap> $text </td> </tr>
 <tr>
  <td align=left valign=bottom> <img src=corner.html?s=$s&lb=1&ci=$color&co=eeeeee> </td>
  <td> <img src=onepix.html> </td>
  <td align=right valign=bottom> <img src=corner.html?s=$s&rb=1&ci=$color&co=eeeeee> </td>
 </tr>
</table>";
        print $table;
}
// Call the function
frameit("Plain text");
frameit("<b>format text</b>","bbbbbb",10);
frameit("$forms");
frameit("$existing_table");
?>

| Home | Comments | Download Source | Download onepix Source | Email |