Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2014
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. <tr>
  2. <th style="max-width:60px;"></th>
  3. <?php
  4. foreach($rows as $row)
  5. {
  6. ?>
  7. <th style="text-align:center"><?php echo $row["Edition"]; ?></th>
  8. <?php } ?>
  9. </tr>
  10.  
  11.  
  12.  
  13. <tr>
  14. <th style="min-width:60px;">Submit</th>
  15. <?php
  16. foreach($rows as $row)
  17. {
  18. ?>
  19. <td> <input type=radio name=copy value='yes' id="setTimeButton" onClick="data_copy()";>copy</a></td>
  20. <?php } ?>
  21. </tr>
  22.  
  23. <script type="text/javascript">
  24. function data_copy()
  25. {
  26. if(document.form1.copy[0].checked){
  27. document.form1.Edition.value=document.form1.edition.value;
  28. }
  29. }
  30. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement