We'll need a bit more information (and not in the form of the address of an unknown site buried in the code).

How would we know which rows have red backgrounds?

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http:/ +/www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Some red rows</title> <style type="text/css"> .red { color:black; background-color:red; } .b { font-weight:bold; } </style> </head> <body> <table> <tr><td>foo</td></tr> <tr bgcolor="red"><td>bar with bgcolor in the row tag (deprecated)</td +></tr> <tr><td class="b">no color but bold</td></tr> <tr class="red"><td>qux with css in the tr</td></tr> <tr bgcolor="#FF0000"><td>qum on red background</td></tr> </table> </body> </html>

produces (rows 3 and 4 (corrected row numbers) do not render here as coded because of restrictions within the Monastery):

foo
bar with bgcolor in the row tag (deprecated)
no color but bold
qux with css in the tr
qum on red background

And these are just a couple of the ways to use "red" as the background color of a row.


In reply to Re: Fetch the data with red background... by ww
in thread Fetch the data with red background... by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.