source:
schedule/function/search.php@
15497
| Last change on this file since 15497 was 15497, checked in by , 12 years ago | |
|---|---|
| File size: 319 bytes | |
| Line | |
|---|---|
| 1 | <script type="text/javascript"> |
| 2 | $(document).ready(function(){ |
| 3 | <?php |
| 4 | $sd=mysql_query("SELECT*FROM source"); |
| 5 | while($rowsd=mysql_fetch_array($sd)) |
| 6 | { |
| 7 | ?> |
| 8 | $('#source').append('<option value=<?php echo $rowsd['fSourceKEY']; ?> ><?php echo $rowsd['fSourceName']; ?></option>'); |
| 9 | <?php |
| 10 | } |
| 11 | ?> |
| 12 | }); |
| 13 | </script> |
Note:
See TracBrowser
for help on using the repository browser.
