source: schedule/search/search.php@ 17464

Last change on this file since 17464 was 17430, checked in by tose, 11 years ago
File size: 2.2 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">
4<head id="Head1">
5<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
6 <script src="search/jQuery Dual Listbox Plug-In_files/jQuery.dualListBox-1.2.min.js" language="javascript" type="text/javascript"></script>
7 <script language="javascript" type="text/javascript">
8 $(function() {
9 $.configureBoxes();
10 });
11 </script>
12 <link href="search/jQuery Dual Listbox Plug-In_files/styles.css" type="text/css" rel="Stylesheet">
13<title>
14 FACT
15</title>
16</head>
17<body>
18
19
20 <input type="text" size="18" id="box1Filter" placeholder="Search Here" />
21 <button type="button" id="box1Clear" class="buttonc">&nbsp;Clear&nbsp;</button>
22</div>
23
24
25 <table>
26 <tbody><tr>
27 <td width="192"><label>Source List</label>
28 <select id="box1View" multiple="multiple" style="height:180px;width:115px;">
29 <?php
30 $con=mysql_connect("localhost","scheduletest","t3stsched");
31 mysql_select_db("sandboxschedule",$con);
32 $query=mysql_query("SELECT*FROM source");
33 while($rs=mysql_fetch_array($query)){
34 ?>
35 <option value="<?php echo $rs['fSourceKEY']; ?>"><?php echo $rs['fSourceName']; ?></option>
36 <?php
37 }
38 ?>
39 </select>
40 <select id="box1Storage" style="display: none;">
41
42 </select>
43 </td>
44 <div>
45 <td width="39" style="margin-left: -10px;">
46 <button id="to2" type="button">&nbsp;&gt;&nbsp;</button><button id="to1" type="button">&nbsp;&lt;&nbsp;</button>
47 </td>
48 </div>
49
50 <td width="370">
51 <input type="text" id="box2Filter" hidden >
52 <label>Displayed</label>
53 <select id="box2View" multiple="multiple" style="height:180px;width:115px;"></select>
54 <select id="box2Storage" style="display: none;"></select>
55 </td>
56 </tr>
57 </tbody>
58 </table>
59</body>
60</html>
Note: See TracBrowser for help on using the repository browser.