Advertisement
Guest User

Untitled

a guest
Nov 17th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.66 KB | None | 0 0
  1. <?php
  2. include 'template.php';
  3. $lalala = '  <tr>
  4.  
  5.            <td>Kraj</td>
  6.            <td><select id="id_kraja" onchange="zmen_kraj()">
  7.                    <option">Vyber kraj</option>
  8.                    
  9.                    
  10.                  <?php
  11.                    $res = mysqli_query($db, "select * from region");
  12.                    while ($row = mysqli_fetch_array($res)) {
  13.                        ?>
  14.  
  15.                       <option value="<?php echo $row["id"]; ?>"><?php echo $row["name"]; ?></option>
  16.  
  17.                        <?php
  18.                    }
  19.                    ?>
  20.  
  21.                </select>
  22.            </td>
  23.        </tr>';
  24.  
  25. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement