Note that there are some explanatory texts on larger screens.

plurals
  1. POI cannot understand this error in XHTML strict
    text
    copied!<p>This page is generated through a PHP script. Here is the error message: </p> <blockquote> <p>Line 14, Column 8: end tag for "tbody" which is not finished</p> <pre><code>&lt;/tbody&gt;&lt;/table&gt; </code></pre> <p>Most likely, you nested tags and closed them in the wrong order. For example <code>&lt;p&gt;&lt;em&gt;...&lt;/p&gt;</code> is not acceptable, as <code>&lt;em&gt;</code> must be closed before <code>&lt;p&gt;</code>. Acceptable nesting is: <code>&lt;p&gt;&lt;em&gt;...&lt;/em&gt;&lt;/p&gt;</code></p> <p>Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <code>&lt;head&gt;</code> element must contain a <code>&lt;title&gt;</code> child element, lists require appropriate list items (<code>&lt;ul&gt;</code> and <code>&lt;ol&gt;</code> require <code>&lt;li&gt;</code>; requires <code>&lt;dt&gt;</code> and <code>&lt;dd&gt;</code>), and so on.</p> </blockquote> <p>Here is what my code looks like when you view source in Google Chrome: </p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt; &lt;title&gt;Donald Podhorsky&lt;/title&gt; &lt;link href="CSS/Index.css" rel="stylesheet" type="text/css" /&gt; &lt;/head&gt; &lt;body&gt; &lt;h3&gt;Search Results&lt;/h3&gt; &lt;table&gt; &lt;tbody&gt; &lt;/tbody&gt;&lt;/table&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Here is what my code looks like when you view source in Firefox:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt; &lt;title&gt;PcDescribeTable&lt;/title&gt; &lt;link href="CSS/Index.css" rel="stylesheet" type="text/css" /&gt; &lt;/head&gt; &lt;body&gt; &lt;h3&gt;Search Results&lt;/h3&gt; &lt;table&gt; &lt;tr&gt;&lt;td&gt;Intel i7-950 3.06GHz&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;WD 500GB 7200RPM SATA 6GBs&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;XFX Radeon HD 6870&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;CORSAIR 4GB DDR3 1600&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;ASUS P6X58D-E LGA 1366&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;CORSAIR Enthusiast Series 650W&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;VisonTek Bigfoot Killer&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Creative Sound Blaster X-Fi HD&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Razer Lycrosa&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;24x DVD Burner&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Asus 23" Full HD LED&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;Razer Death Adder&lt;/td&gt;&lt;/tr&gt; &lt;/table&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>And this is what the Php Script looks like: </p> <pre><code>&lt;table&gt; &lt;tbody&gt; &lt;?php for ( $counter = 0; $row = mysql_fetch_row( $result ); $counter++ ) { print("&lt;tr&gt;"); foreach ( $row as $key =&gt; $value ) print( "&lt;td&gt;".$value."&lt;/td&gt;"); print("&lt;/tr&gt;"); } print("&lt;/tbody&gt;"); print("&lt;/table&gt;"); mysql_close($database); ?&gt; </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload