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