Warning: Invalid argument supplied for foreach() in /home/jihswbiz/public_html/t6.gwilt.org/refDox.php on line 212
Docs-colorShow

 

ReLoad

Keys


Functions

arraybrowsercolorcookiedatetimeDBdebugdeviceDSTequiverrorflagsfontformatgeo
holidayhtmlisjsonmathparsePHPprintsearchsortstringtabletexttracetype
VOTDweatherxml

Function  colorShow   Lines 619-637 (18 lines)Added: 2021-02-12 file  utils.php   Last mod: Fri 2021-05-14 21:45:07

function colorShow ()
        {
#-k     color   format
#-      takes a variable # of colors as args and builds a table to show them.
#-p     $col    - opt   - Hex RGB color (Must be in the form #hhhhhh)
#-d     2/12/21 Added

        
$raw debug_backtrace();
        
$sout "<table><tr>\n";

        foreach (
$raw[0]['args'] as $col)
                {
                
$sout .= colorShowFormat($col)."\n";
                }
        
$sout .= "</tr></table>\n";
        echo 
$sout;

        }

?>