Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <?php
  2. $cars = array("Volvo", "BMW", "Toyota");
  3. ?>
  4.  
  5.  
  6. <form name="excel_upload" id="excel_upload" action="" method="post">
  7. <input type="hidden" name="data[]" >
  8. <input type="submit">
  9. </form>
  10.  
  11. <?php
  12. $cars = array("Volvo", "BMW", "Toyota");
  13. ?>
  14.  
  15.  
  16. <form name="excel_upload" id="excel_upload" action="" method="post">
  17. <input type="hidden" name="data[]" value="<?php print_r($table); ?>" >
  18. <input type="submit">
  19. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement