Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>For a start this bit of HTML is incorrect (cannot have forms within forms):</p> <pre><code> &lt;form action="" id="userLocation" method="post"&gt; &lt;form name="sample" method="POST"&gt; &lt;form method="post" id="category" name="category"&gt; Select Year: &lt;select name="sortyear" id="sortyear"&gt; &lt;option value="2010"&gt;2010&lt;/option&gt; &lt;option value="2011"&gt;2011&lt;/option&gt; &lt;option value="2012"&gt;2012&lt;/option&gt; &lt;option value="2013"&gt;2013&lt;/option&gt; &lt;/select&gt; &lt;input type = "submit" name = "submit" value = "Select"&gt; &lt;/form&gt; Select year: &lt;select name="quarter" id="quarter"&gt; &lt;option value="1"&gt;1st Quarter&lt;/option&gt; &lt;option value="2"&gt;2nd Quarter&lt;/option&gt; &lt;option value="3"&gt;3rd Quarter&lt;/option&gt; &lt;option value="4"&gt;4th Quarter&lt;/option&gt; &lt;/select&gt; &lt;input type="submit" name="submit" value="Go"&gt; </code></pre> <p>You should just have something like the following:</p> <pre><code>&lt;form action="some URL" method="POST"&gt; Select Year: &lt;select name="sortyear" id="sortyear"&gt; &lt;option value="2010"&gt;2010&lt;/option&gt; &lt;option value="2011"&gt;2011&lt;/option&gt; &lt;option value="2012"&gt;2012&lt;/option&gt; &lt;option value="2013"&gt;2013&lt;/option&gt; &lt;/select&gt; Select Quater: &lt;select name="quarter" id="quarter"&gt; &lt;option value="1"&gt;1st Quarter&lt;/option&gt; &lt;option value="2"&gt;2nd Quarter&lt;/option&gt; &lt;option value="3"&gt;3rd Quarter&lt;/option&gt; &lt;option value="4"&gt;4th Quarter&lt;/option&gt; &lt;/select&gt; &lt;input type="submit" name="submit" value="Go"&gt; &lt;/form&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

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