There is a drop-down list on the PHP website that contains names taken from the database, after selecting a name from the list, e.g. "Aprilia", I would like all records to be displayed from the database where mark = Aprilia
I know I should add in the code below just in a SELECT WHERE x = y query but I just don't know how to do it; it should look like this in my opinion:
$result = mysqli_query($conn, "SELECT * FROM motorcycles WHERE mark = X");
And I just can't find this X (X should be the user pick from the dropdown list) How to write it?
Photos: https://i.stack.imgur.com/dLhcf.jpg
<?php
    require_once 'header.php';
  
    $servername = "localhost";
    $username = "root";
    $password = "";
    $dbname = "projectinz";
    // Create connection
    //$conn = new mysqli($servername, $username, $password, $dbname);
    $conn = mysqli_connect($servername, $username, $password, $dbname);
    // Check connection
    if ($conn->connect_error) {
        die("Connection failed: " . $conn->connect_error);
    }
?>
<select name="mark" id="mark">
    <?php
        $query = $conn->query("SELECT mark FROM motocykle");
        while($kategoria = mysqli_fetch_array($query))
        {
            echo '<option>'.$kategoria['mark'].'</option>';
        }
    ?>
</select>
<?php
    $wynik = mysqli_query($conn,"SELECT * FROM motocykle");
    while($row = mysqli_fetch_array($wynik))
    {
        echo "<br>".$row['mark']." ".$row['model']." ".$row['capacity']." ".$row['power']."<br>"; 
    }
    mysqli_close($conn);
?> 
</body>
</html>
EDIT !!!
find1.php
<?php
    require_once 'header.php';
    $servername = "localhost";
    $username = "root";
    $password = "";
    $dbname = "projectinz";
    // Create connection
    //$conn = new mysqli($servername, $username, $password, $dbname);
    $conn = mysqli_connect($servername, $username, $password, $dbname);
    // Check connection
    if ($conn->connect_error) {
        die("Connection failed: " . $conn->connect_error);
    }
?>
<form action="../includes/find.inc.php" method="post">
    <select name="mark" id="mark">
        <?php
            $query = $conn->query("SELECT mark FROM motocykle");
            while ($kategoria = mysqli_fetch_array($query)) {
                echo '<option value="id">'.$kategoria['mark'].'</option>';
            }
        ?>
    </select>
    
    <button type="submit" name="findmoto">Find</button>
</form>
<?php
    $wynik = mysqli_query($conn,"SELECT * FROM motocykle ");
    while ($row = mysqli_fetch_array($wynik)) {
        echo "<br>".$row['mark']." ".$row['model']." ".$row['capacity']." ".$row['power']."<br>"; 
    }
    
    mysqli_close($conn);
?>
</body>
</html>
find.inc.php
<?php
session_start();
if (isset($_POST['findmoto'])) {
    require 'dbh.inc.php';
    $id = $_POST["id"];
    $marka = $_POST["mark"];
    
    echo $id;
    echo $marka;
    $display = "SELECT * FROM motocykle WHERE id='$id';";
    $run = mysqli_query($conn, $display);
    if ($run) {
        echo $display;
    } else {
        echo "not";
    }
}
BUT: https://i.stack.imgur.com/tpt1C.jpg Where is the problem?
 
    