Advertisement
Guest User

Untitled

a guest
Mar 25th, 2020
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.50 KB | None | 0 0
  1. index.html
  2. ----------
  3. <form action="deneme.php" method="post">
  4.     <input type="text" name="cal" />
  5.     <button type="submit">Cal</button>
  6. </form>
  7.  
  8. deneme.php
  9. ------------
  10. <?php
  11.  
  12. $cal = $_POST["cal"];
  13. function calculation($cal){
  14.     $matrix1 = array();
  15.  
  16.     for ($row = 0; $row <$cal; $row++) {
  17.         for ($col = 0; $col <$cal; $col++) {
  18.  
  19.             $matrix1[$row][$col] = rand(10, 99);
  20.         }
  21.     }
  22.     return $matrix1;
  23. }
  24. $matrix1 = calculation($cal);
  25.  
  26. echo "<pre>";
  27. var_dump($matrix1);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement