Advertisement
olekturbo

Untitled

May 7th, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <?php
  2. $liczby=$_POST['ile'];
  3. for ($i=0; $i<$liczby; $i++)
  4. {
  5. ?>
  6. <form method="POST">
  7. Tabela nr: <?php echo $i+1 ?> <input type=text name="nr[]"/><br/>
  8.  
  9.  
  10. <?php
  11. }
  12. ?>
  13. <input type=submit value="Zatwierdz" name="submit"/>
  14. </form>
  15. <br><br>
  16. <?php
  17.  
  18. $numer=$_POST['nr'];
  19.  
  20. if(isset($_POST['submit'])) {
  21. echo "Nie umiem dokonczyc ;x";
  22. }
  23.  
  24. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement