<?xml version="1.0" encoding="UTF-8"?>
<response>
  <status>success</status>
  <result>
    <project>
      <id>22368</id>
      <name>php-xhtml-table</name>
      <created_at>2008-10-07T14:44:17Z</created_at>
      <updated_at>2009-06-04T16:05:14Z</updated_at>
      <description>PHP XHTML tableThis class for PHP 5 easily creates XHTML valid tables with a simple and easy to remember syntax. 

Download and installDownload the file, unzip it and read the INSTALL file. 

Example$table = new table('border=&quot;1&quot;');
$table-&gt;caption('People');

$table-&gt;part('head');
$table-&gt;headers('Name',array('Age'=&gt;'title=&quot;in years&quot;'),'Country');

$table-&gt;part('body','style=&quot;color:Blue;&quot;');

$table-&gt;row('');
$table-&gt;cells('John',23,'USA');

$table-&gt;row('');
$table-&gt;cell('Jack');
$table-&gt;cell('42');
$table-&gt;cell('Mexico');

$table-&gt;row('');
$table-&gt;cell('Philip J. Fry');
$table-&gt;cell('23');
$table-&gt;cell('India');

$table-&gt;part('foot','style=&quot;color:Violet;&quot;');
$table-&gt;cell(&quot;Total :&quot;);
$table-&gt;cell(23+42+23);
# empty cell
$table-&gt;cell();

# reopen a closed part, and add a row
# won't increment the total, it's only an example
$table-&gt;part('body');
$table-&gt;row('style=&quot;color:Green;&quot;');
$table-&gt;cells('Igor',43,'Russia');

echo($table);XHTML Output
People


Name
Age
Country




Total :
88
&amp;nbsp;





John
23
USA


Jack
42
Mexico



Philip J. Fry
23
India


Igor
43
Russia




Preview</description>
      <homepage_url>http://code.google.com/p/php-xhtml-table</homepage_url>
      <download_url></download_url>
      <url_name>php-xhtml-table</url_name>
      <user_count>1</user_count>
      <average_rating></average_rating>
      <rating_count>0</rating_count>
      <analysis_id>574981</analysis_id>
      <analysis>
        <id>574981</id>
        <project_id>22368</project_id>
        <updated_at>2009-12-02T20:04:18Z</updated_at>
        <logged_at>2009-12-02T20:04:15Z</logged_at>
        <min_month>2008-04-01T00:00:00Z</min_month>
        <max_month>2009-05-01T00:00:00Z</max_month>
        <twelve_month_contributor_count>1</twelve_month_contributor_count>
        <total_code_lines>197</total_code_lines>
        <main_language_id>2</main_language_id>
        <main_language_name>PHP</main_language_name>
      </analysis>
      <licenses>
        <license>
          <name>gpl3_or_later</name>
          <nice_name>GNU General Public License 3 or later</nice_name>
        </license>
      </licenses>
    </project>
  </result>
</response>
