からデータを取得する場所を私の問題は、この2つを使用したい:私はPHPでの条件は、MySQL
$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";
}
:このため、私はこれを挿入する必要があり、私は関連記事を表示したい
<?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();
?>
ので、どのように私は
$strSQL = "SELECT * FROM table1 WHERE id=" . $_GET["id"];
とどのようにエコーに近い関連ポストの一部を挿入することができますか?
おかげ
[PHPでmysql_ *関数を使うべきではないのですか?](http://stackoverflow.com/questions/12859942/why-shouldnt-i-use-mysql -functions-in-php) –