Note that there are some explanatory texts on larger screens.

plurals
  1. POA Div section not executing
    text
    copied!<p>In my below given code, the second DIV section is not executing. The PHP code contained therein is not executing. I added a test echo, but it is not displaying it also. Why the control is not reaching there.</p> <pre><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&gt; &lt;html&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"&gt; &lt;title&gt;Add/Update Election Category&lt;/title&gt; &lt;link rel="stylesheet" href="../Lib/entryformstyle.css" type="text/css"/&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="sectionEntryForm" class="entryForm" style="width:300px"&gt; &lt;!-- Begin of Entry Form Section --&gt; &lt;form action="electioncategorymaster.php" method="post" id="frmElectionCategoryMaster" name="frmElectionCategoryMaster"&gt; &lt;table id="tblEntryForm" cols="3" class="entryFormTable"&gt; &lt;tr bgcolor="white"&gt; &lt;td colspan="3" align="center"&gt;Add / Update Election Category&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;Election category name:&lt;/td&gt; &lt;td colspan="2"&gt;&lt;input id="inElectionCategoryName" name="inElectionCategoryName" accept="text/plain" maxlength="80" class="entryFormInputBoxColorCompulsoryField" size="40"&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;Total members:&lt;/td&gt; &lt;td colspan="2"&gt;&lt;input id="inTotalMembers" name="inTotalMembers" accept="text/plain" maxlength="6" class="entryFormInputBoxColor" size="40"&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;Short description:&lt;/td&gt; &lt;td colspan="2"&gt;&lt;textarea id="inShortDesc" name="inShortDesc" class="entryFormInputBoxColor" cols="31"&gt;&lt;/textarea&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;Chairman:&lt;/td&gt; &lt;td colspan="2"&gt;&lt;input id="inChairman" name="inChairman" accept="text/plain" maxlength="80" class="entryFormInputBoxColor" size="40"&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td align="center"&gt;&lt;input id="btnMenu" name="btnMenu" type="button" value="Return to Menu"&gt;&lt;/td&gt; &lt;td align="center"&gt;&lt;input id="btnClear" name="btnClear" type="button" value="Clear Entries"&gt;&lt;/td&gt; &lt;td align="center"&gt;&lt;input id="btnUpdate" name="btnUpdate" type="submit" value="Update Record"&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/form&gt; &lt;/div&gt; &lt;!-- End of Entry Form Section --&gt; &lt;br&gt; &lt;div id="sectionGrid"&gt; &lt;!-- Begin of Grid Section --&gt; &lt;table id="tblGrid"&gt; &lt;tr&gt; &lt;?php echo "---"; require("../Lib/displaygrid.php"); displaygrid::SetGridWithValues("ecid As ID, ecname As Category","electioncategorymaster"); ?&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/div&gt; &lt;!-- End of Grid Section --&gt; &lt;/body&gt; &lt;/html&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