如何使用 MYSQL 打印每个用户的动态位置
该代码
<?
if($items["User"]["city"]!=""){
echo " ". $items["User"]["city"];
} else {
echo " Unknown Location";
}
?>
在此页面上运行 http://www.u.neighborrow.com/requests/view/2183
显示正确的位置 = 休斯顿
我在 items/view 上放置了相同的代码以动态拉取位置... 所以我将 REQUESTS 修改为 ITEMS 并将相同的代码放在 此处
但它没有找到正确的数据。
如何让 UNKNOWN LOCATION 在项目所有者的用户表中显示城市?
The code
<?
if($items["User"]["city"]!=""){
echo " ". $items["User"]["city"];
} else {
echo " Unknown Location";
}
?>
IS working on this page http://www.u.neighborrow.com/requests/view/2183
DISPLAYING THE CORRECT LOCATION = HOUSTON
I PUT THE SAME CODE ON items/view to dynamically pull location...
so I modified REQUESTS to ITEMS and put the same code here
but it's not finding the right data.
How can I get UNKNOWN LOCATION to display the CITY in the users table of the owner of the item?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
以下是您需要应用的一些步骤
这些简单的步骤将使您在计算机科学的世界中走得更远
Here are some steps you need to apply
These simple steps will get you far in the world of computer science
我想你应该知道数组中已经放入了什么。你可以使用 print_r 或 var_dump 函数。
然后尝试使用 for 或 foreach 遍历数组。
I think you should know what has already been put in the array.you can use the print_r or var_dump functions.
then try to go through the array use for or foreach .
我注意到第一个 URL 在描述文本中显示位置“休斯顿”。第二个 URL 尝试在标题中显示位置,但显示位置未知。第二个 URL 确实在描述文本中显示位置“NYC”。
可能是您的框架/库在打印标题时没有可用的“城市”数据。
I notice the first URL shows the location "houston" in the description text. The second URL attempts to show location in the title, showing Location Unknown instead. The second URL does show a location "NYC" in the description text.
It may be your framework/library does not have the 'city' datum available at the time it is printing the title.