我有一个名为的表blogtable
,其中有两个字段。一个是title
,另一个是content
。我以链接的形式检索了唯一的title
行并将其保存在一个名为 result.php 的文件中。
这是我的代码:
<?php
mysql_connect("localhost","root","");
mysql_select_db("test");
$data = mysql_query("select title from blogtable");
while($col = mysql_fetch_field($data))
{
echo $col->name;
}
while($row = mysql_fetch_row($data))
{
for($i = 0; $i < count($row); $i++)
{
echo"<br/>";
echo "<a href=\"".$row[$i]."\">".$row[$i]."</a>";
echo "<br/>";
}
}
?>
我想通过使用 URL 操作来检索特定title
的。content
我试过了,但我不知道如何传递文件 URL。我写了以下内容,文件名是parse.php。
<?php
$a = $_GET['title'];
mysql_connect("localhost","root","");
mysql_select_db("test");
$sqlstmt=select * from blogtable where title=$a;
mysql_query($sqlstmt);
?>
我不知道如何解析 results.php URL 并动态检索数据。