table html code





<table border="1" style="background-color: lightblue;" width="">
<tbody>

<tr style="background-color: blue; color: white;">
<th colspan="2">About Adnework          </th></tr>

<tr style="background-color: blue; color: white;">
<th colspan="2">                                   </th></tr>

<tr>
<td>Ad network Type </td><td>                               </td></tr>

<tr>
<td>Requirements </td><td>                               </td></tr>

<tr>
<td>Minimum payout </td><td>                                </td></tr>

<tr>
<td>Payment Methods </td><td>                                   </td></tr>

<tr>
<td>Location</td><td>                                        </td></tr>

<tr>
<td>Payment Period</td><td>                               </td></tr>

<tr>
<th colspan="2">                                        </th></tr>

<tr>
<th colspan="2">Payment Proof          </th></tr>

<tr>
<th colspan="2">Impressions review       </th></tr>

</tbody></table>

test table

Table header
Table cell 1Table cell 2

function bb2html($text)
{
  $bbcode = array("<", ">",
                "[list]", "[*]", "[/list]", 
                "[img]", "[/img]", 
                "[b]", "[/b]", 
                "[u]", "[/u]", 
                "[i]", "[/i]",
                '[color="', "[/color]",
                "[size="", "[/size]",
                '[url="', "[/url]",
                "[mail="", "[/mail]",
                "[code]", "[/code]",
                "[quote]", "[/quote]",
                '"]');
  $htmlcode = array("&lt;", "&gt;",
                "<ul>", "<li>", "</ul>", 
                "<img src="", "">", 
                "<b>", "</b>", 
                "<u>", "</u>", 
                "<i>", "</i>",
                "<span style="color:", "</span>",
                "<span style="font-size:", "</span>",
                '<a href="', "</a>",
                "<a href="mailto:", "</a>",
                "<code>", "</code>",
                "<table width=100% bgcolor=lightgray><tr><td bgcolor=white>", "</td></tr></table>",
                '">');
  $newtext = str_replace($bbcode, $htmlcode, $text);
  $newtext = nl2br($newtext);//second pass
  return $newtext;
}