Changeset 15886 for schedule/function/sourcelist.php
- Timestamp:
- 05/21/13 15:05:02 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
schedule/function/sourcelist.php
r15532 r15886 1 1 <script type="text/javascript"> 2 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 ?> 3 12 4 }); 13 5 </script>
Note:
See TracChangeset
for help on using the changeset viewer.