使用php从mysql数据库中选择特定内容
我需要从表中的特定 ID 中回显文本。 如果我使用
<?php
database_connect();
$navquery = "SELECT * from content
WHERE id = 1
ORDER by position;";
$navresult = mysql_query($navquery);
?>
它将回显 ID 1 中的文本..
但是当我尝试时
<?php
database_connect();
$navquery = "SELECT * from content
WHERE id = 2
ORDER by position;";
$navresult = mysql_query($navquery);
?>
它不会回显 ID 2 中的文本..
请帮帮我吗?
I need to echo text from a specific ID in my table..
If i use
<?php
database_connect();
$navquery = "SELECT * from content
WHERE id = 1
ORDER by position;";
$navresult = mysql_query($navquery);
?>
it will echo the text in ID 1..
but when i try
<?php
database_connect();
$navquery = "SELECT * from content
WHERE id = 2
ORDER by position;";
$navresult = mysql_query($navquery);
?>
it wont echo the text in ID 2..
help me please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的内容表中没有 id 为 2 的行。您可以尝试下面的查询来获取另一行。
You do not have a row on your content table with an id of 2. You can try the query below to get another row.