Random Coloring Pic


Online Coloring Pictures

Coloring fun for kids


Warning: Cannot modify header information - headers already sent by (output started at /home/onlineco/public_html/search.php:8) in /home/onlineco/public_html/os2/config.php on line 969

Warning: Cannot modify header information - headers already sent by (output started at /home/onlineco/public_html/search.php:8) in /home/onlineco/public_html/os2/config.php on line 970

Warning: Cannot modify header information - headers already sent by (output started at /home/onlineco/public_html/search.php:8) in /home/onlineco/public_html/os2/config.php on line 971

Warning: Cannot modify header information - headers already sent by (output started at /home/onlineco/public_html/search.php:8) in /home/onlineco/public_html/os2/config.php on line 972

Warning: Cannot modify header information - headers already sent by (output started at /home/onlineco/public_html/search.php:8) in /home/onlineco/public_html/os2/config.php on line 973

Warning: Cannot modify header information - headers already sent by (output started at /home/onlineco/public_html/search.php:8) in /home/onlineco/public_html/os2/head.php on line 261
 
Online Coloring Pictures Categories
Google
 

Search Results

 

Please enter your search terms below.

  • Search terms with fewer than 3 characters are ignored
  • Enclose groups of terms in quotes ("") to search for phrases
  • Prefix terms with a plus-sign (+) to make them important
  • Prefix terms with a minus-sign (-) or exclamation point (!) to exclude terms

An Orca Script
Google
 

#tagcloud { width: 300px; background:#FFFFCC; color:#0066FF; padding: 10px; border: 1px solid #FFE7B6; text-align:center; } #tagcloud a:link, #tagcloud a:visited { text-decoration:none; } #tagcloud a:hover, #tagcloud a:active { text-decoration: underline; color: #000; } #tagcloud span { padding: 4px; } .smallest { font-size: x-small; } .small { font-size: small; } .medium { font-size:medium; } .large { font-size:large; } .largest { font-size:larger; } $terms = array(); $maximum = 0; // $maximum is the highest counter for a search term $query = mysql_query("SELECT term, counter FROM search ORDER BY counter DESC LIMIT 30"); while ($row = mysql_fetch_array($query)) { $term = $row['term']; $counter = $row['counter']; // update $maximum if this term is more popular than the previous terms if ($counter> $maximum) $maximum = $counter; $terms[] = array('term' => $term, 'counter' => $counter); } // shuffle terms unless you want to retain the order of highest to lowest shuffle($terms); // start the output to the page echo "

Popular Searches

\n"; foreach ($terms as $k) // start looping through the tags { // determine the popularity of this term as a percentage $percent = floor(($k['counter'] / $maximum) * 100); // determine the class for this term based on the percentage if ($percent <20) { $class = 'smallest'; } elseif ($percent>= 20 and $percent <40) { $class = 'small'; } elseif ($percent>= 40 and $percent <60) { $class = 'medium'; } elseif ($percent>= 60 and $percent <80) { $class = 'large'; } else { $class = 'largest'; } // output this term echo "" . $k['term'] . "\n "; } // close the output echo "
\n";