How can i get the whole row based on div ID(or something like this) using Ajax?
<div id="1">something inside</div>
<div id="2">something inside</div>
<div id="3">something inside</div>
<div id="4">something inside</div>
<div id="5">something inside</div>
<div id="6">something inside</div>
<div id="results"></div>
If someone clicks on a div, a row with the same id should be shown from the mysql.
When someone clicks on the <div id="3">, it should load a row, with the id "3" from mysql into the result div.
So far i was only able to code this:
$("#smash").click(function(){
        $.ajax({
            url: "loaditems.php",
            success: function(result){
            $("#items").html(result);
        }});
    });
PHP
        <?php
        include "mysql.php";
        $sql = "SELECT * FROM SmiteItems";
        $result = $conn->query($sql);
        if ($result->num_rows > 0) {
            // output data of each row
            while($row = $result->fetch_assoc()) {
                echo "<div class='item'>";
                // Name
                echo "<h3>" . $row["name"] . "</h3>";
                // DIV INFO
                echo "<div class='info'>";
                // Picture
                echo "<img src='img/" . $row["id"] . ".png'>";
                // Table Values
                echo "<table>";
                // Power
                if($row["power"]>0) {
                    echo "<tr><td>Power:</td><td> " . $row["power"] . "</td></tr>";
                }
                // Attack Speed
                if($row["attspeed"]>0) {
                    echo "<tr><td>Attack speed:</td><td> " . $row["attspeed"] . "</td></tr>";
                }
                // Lifesteal
                if($row["lifesteal"]>0) {
                    echo "<tr><td>Lifesteal:</td><td> " . $row["lifesteal"] . "</td></tr>";
                }
                // Penetration
                if($row["penetr"]>0) {
                    echo "<tr><td>Penetration:</td><td> " . $row["penetr"] . "</td></tr>";
                }
                // Physical Def
                if($row["physdef"]>0) {
                    echo "<tr><td>Physical:</td><td> " . $row["physdef"] . "</td></tr>";
                }
                // Magical Def
                if($row["magdef"]>0) {
                    echo "<tr><td>Magical:</td><td> " . $row["magdef"] . "</td></tr>";
                }
                // Health
                if($row["health"]>0) {
                    echo "<tr><td>Health:</td><td> " . $row["health"] . "</td></tr>";
                }
                // HP regen
                if($row["hp5"]>0) {
                    echo "<tr><td>HP5:</td><td> " . $row["hp5"] . "</td></tr>";
                }
                // Movement Speed
                if($row["mspeed"]>0) {
                    echo "<tr><td>Movement:</td><td> " . $row["mspeed"] . "</td></tr>";
                }
                // Cooldown
                if($row["cdown"]>0) {
                    echo "<tr><td>Cooldown:</td><td> " . $row["cdown"] . "%</td></tr>";
                }
                // Mana
                if($row["mana"]>0) {
                    echo "<tr><td>Mana:</td><td> " . $row["mana"] . "</td></tr>";
                }
                // MP5
                if($row["mp5"]>0) {
                    echo "<tr><td>MP5:</td><td> " . $row["mp5"] . "</td></tr>";
                }
                // Crowd Control Reduction
                if($row["ccr"]>0) {
                    echo "<tr><td>CCR:</td><td> " . $row["ccr"] . "</td></tr>";
                }
                // Stack YES output
                if($row["stack"]==1) {
                    echo "<tr><td>Stack:</td><td> Yes</td></tr>";
                }
                // Item Type Aura Passive etc
                if (!empty($row["itype"])){
                    echo "<tr><td>Type:</td><td> " . $row["itype"] . "</td></tr>";
                }
                // Table Close
                echo "</table>";
                // Item description
                if (!empty($row["text"])){
                    echo "<div class='text'>";
                    //echo "<h4>Description:</h4>";
                    echo "<p>" . $row["text"] . "</p>";
                    echo "</div>";
                }
                echo "</div>"; // CLOSE DIV INFO
                echo "</div>";
            }
        } else {
            echo "<p>0 results</p>";
        }
        $conn->close();
        ?>
I know that my PHP isn't great, i just started learning it. There are also empty rows in my MySQL table, so i need to check if it's empty before adding it to the html.
 
     
    