source: schedule/search.php@ 15900

Last change on this file since 15900 was 15900, checked in by tanio, 12 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"><head id="Head1"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <script language="javascript" type="text/javascript">
5 $(function() {
6 $.configureBoxes();
7 });
8</script>
9 FACT
10</title></head>
11<body>
12
13<div>
14
15</div>
16
17
18 <table>
19 <tbody><tr>
20 <td>
21 SEARCH: <input type="text" size="10" id="box1Filter"><button type="button" id="box1Clear">&nbsp;X&nbsp;</button>
22 <label>Source List</label>
23 <select id="box1View" multiple="multiple" style="height:180px;width:115px;">
24 <?php
25 $con=mysql_connect("localhost","scheduletest","t3stsched");
26 mysql_select_db("sandboxschedule",$con);
27 $query=mysql_query("SELECT*FROM source");
28 while($rs=mysql_fetch_array($query)){
29 ?>
30 <option value="<?php echo $rs['fSourceKEY']; ?>"><?php echo $rs['fSourceName']; ?></option>
31 <?php
32 }
33 ?>
34 </select>
35 <!-- <span id="box1Counter" class="countLabel">Showing 0 of 0</span>-->
36 <select id="box1Storage" style="display: none;">
37 </select>
38 </td>
39 <div>
40 <td style="margin-left: -10px;">
41 <!-- taki jayp el ta buta ese &gt pti &lt amo se el greater dan pti less dan okna-->
42 <button id="to2" type="button">&nbsp;&gt;&nbsp;</button>
43 </td> <td> <button id="to1" type="button">&nbsp;&lt;&nbsp;</button>
44 </td>
45 </div>
46
47 <td>
48 <br /><br />
49 <label>Displayed</label>
50<select id="box2View" multiple="multiple" style="height:180px;width:115px;"></select>
51
52
53
54
55 <!--<span id="box2Counter" class="countLabel">Showing 16 of 16</span>-->
56 <select id="box2Storage" style="display: none;">
57 </select>
58 </td>
59 </tr>
60 </tbody></table>
61
62
63
64
65</body></html>
Note: See TracBrowser for help on using the repository browser.