Guest User

Untitled

a guest
Jul 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.48 KB | None | 0 0
  1. <script>
  2. <?php
  3.     for($i = 0; $i < $driverCount; $i++)
  4.     {
  5. ?>
  6.  
  7.     var firstName<?php echo $driverCount-1; ?> = document.getElementByName('fname<?php echo $driverCount-1; ?>');
  8.     firstName<?php echo $driverCount-1; ?>.value = <?php echo $drivers->firstName; ?>;
  9.     var middleName<?php echo $driverCount-1; ?> = document.getElementByName('mname<?php echo $driverCount-1; ?>');
  10.     middleName<?php echo $driverCount-1; ?>.value = <?php echo $drivers->middleInitial; ?>;
  11.  
  12.  
  13. <?php
  14.     }
  15. ?>
  16. </script>
Add Comment
Please, Sign In to add comment