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

This is PHP Byte Budget..it's one grad with variable width and height so after you write the table, then you must tell the browser how tall it is and after you write the cell, you must tell it the width. You do this by writing them in the string. This is HTML so put the width in quotes, then you must end the cell.



<?php $t = "<center><table border=0 cellspacing=0 cellpadding=0><tr height=";

$pos = "<td bgcolor=black gradcolor=gold gradangle=90 width=";

$neg = "<td bgcolor=black gradcolor=red gradangle=-90 width=";

$E = "></td>";

$R = ">"; $et = "</tr></table></center>";

echo $t,"10",$R,$pos,"20",$E,$neg,"20",$E,$et;

echo $t,"20",$R,$neg,"25",$E,$pos,"25",$E,$neg,"20",$E,$pos,"20",$E,$neg,"25",$E,$pos,"25",$E,$et;

echo $t,"10",$R,$pos,"20",$E,$neg,"20",$E,$pos,"20",$E,$neg,"20",$E,$pos,"20",$E,$neg,"20",$E,$pos,"20",$E,$neg,"20",$E,$pos,"20",$E,$neg,"20",$E,$et;

?>



Back