source: schedule/search.php@ 15836

Last change on this file since 15836 was 15751, checked in by tanio, 11 years ago
File size: 2.6 KB
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<!-- saved from url=(0045)http://www.meadmiracle.com/dlb/DLBPlugin.aspx -->
3<html xmlns="http://www.w3.org/1999/xhtml"><head id="Head1"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <script src="search/jQuery Dual Listbox Plug-In_files/jquery-1.3.2.min.js" type="text/javascript" language="javascript"></script>
5 <script src="search/jQuery Dual Listbox Plug-In_files/jQuery.dualListBox-1.2.min.js" language="javascript" type="text/javascript"></script>
6 <script language="javascript" type="text/javascript">
7 $(function() {
8 $.configureBoxes();
9 });
10 </script>
11 <link href="search/jQuery Dual Listbox Plug-In_files/styles.css" type="text/css" rel="Stylesheet"><title>
12 FACT
13</title></head>
14<body>
15
16<div>
17
18</div>
19
20
21 <table>
22 <tbody><tr>
23 <td>
24 SEARCH: <input type="text" size="10" id="box1Filter"><button type="button" id="box1Clear">&nbsp;X&nbsp;</button>
25 <label>Source List</label>
26 <select id="box1View" multiple="multiple" style="height:180px;width:115px;">
27 <?php
28 $con=mysql_connect("localhost","scheduletest","t3stsched");
29 mysql_select_db("sandboxschedule",$con);
30 $query=mysql_query("SELECT*FROM source");
31 while($rs=mysql_fetch_array($query)){
32 ?>
33 <option value="<?php echo $rs['fSourceKEY']; ?>"><?php echo $rs['fSourceName']; ?></option>
34 <?php
35 }
36 ?>
37 </select>
38
39
40
41
42 <!-- <span id="box1Counter" class="countLabel">Showing 0 of 0</span>-->
43 <select id="box1Storage" style="display: none;">
44 </select>
45 </td>
46 <div><td style="margin-left: -10px;">
47 <button id="to2" type="button">&nbsp;&gt;&nbsp;</button>
48 </td> <td> <button id="to1" type="button">&nbsp;&lt;&nbsp;</button>
49 </td>
50 </div>
51
52 <td>
53 <br /><br />
54 <label>Displayed</label>
55<select id="box2View" multiple="multiple" style="height:180px;width:115px;"></select>
56
57
58
59
60 <!--<span id="box2Counter" class="countLabel">Showing 16 of 16</span>-->
61 <select id="box2Storage" style="display: none;">
62 </select>
63 </td>
64 </tr>
65 </tbody></table>
66
67
68
69
70</body></html>
Note: See TracBrowser for help on using the repository browser.