"Fossies" - the Fresh Open Source Software Archive

Member "webmysql-2.7/cgi-bin/webmysql-2.7/templates/selectchoosefields.html" (12 Feb 2008, 956 Bytes) of package /linux/www/old/webmysql-2.7.tar.gz:


The requested HTML page contains a <FORM> tag that is unusable on "Fossies" in "automatic" (rendered) mode so that page is shown as HTML source code syntax highlighting (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1         <!--menu-->
    2         <p>Please select the fields you wish the query to return.</p>
    3         <script LANGUAGE="JavaScript">
    4             function selectAll(master){
    5                 var object;
    6                 var i = 1;
    7                 while(1){
    8                     eval('object = document.fieldForm.field' + i);
    9                     if(object){
   10                         if(master.checked == true){object.checked = true;}
   11                         else{object.checked = false;}
   12                     }
   13                     else{break;}
   14                     i++;
   15                 }
   16             }   
   17         </script>
   18         <form action="<!--self-->" method="POST" name="fieldForm">
   19             <input type="hidden" name="key" value="<!--key-->">
   20             <input type="hidden" name="action" value="selectchoosecriteria">
   21             <table class="inputtable">
   22                 <tr>
   23                     <th>
   24                         <input type="checkbox" name="selectAllBox" value="" onclick="selectAll(document.fieldForm.selectAllBox);">
   25                     </th>
   26                     <td>(Select all)</td>
   27                 </tr>
   28                 <!--fieldlist-->
   29             </table>
   30             <br>
   31             <table class="inputtable">
   32                 <tr><td><input type="submit" value="Continue"></td></tr>
   33             </table>
   34         </form>