My problem is this:
<?php
    // Connect to database server
    mysql_connect("localhost", "root", "abcabc") or die (mysql_error ());
    // Select database
    mysql_select_db('iite') or die(mysql_error());
    // Get data from the database depending on the value of the id in the URL
    $strSQL = "SELECT * FROM table1 WHERE id=" . $_GET["id"];
    $rs = mysql_query($strSQL);
    // Loop the recordset $rs
    while($row = mysql_fetch_array($rs)) {
        // Write the data of the person
        echo'<h1>'. $row['title'].'</h1>';
        echo'<h1>'. $row['price'].'</h1>';
    }
    // Close the database connection
    mysql_close();
?>
I want to show related posts, for this I need to insert this:
$sql = "SELECT * FROM table1 where title like '%keyword%' limit 5";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
    // output data of each row
    while($row = $result->fetch_assoc()) {
        echo "id: " . $row["id"]. " - Name: " . $row["price"]. " " . $row["title"]. "<br>";
    }
} else {
    echo "0 results";
}
so how can I insert the related post part near
$strSQL = "SELECT * FROM table1 WHERE id=" . $_GET["id"];
and how to echo?
Thanks
 
     
     
     
    