source: schedule/search/search.php@ 17689

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