如何使用 MYSQL 打印每个用户的动态位置

发布于 2024-11-18 22:08:37 字数 473 浏览 2 评论 0原文

该代码

<?
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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

一指流沙 2024-11-25 22:08:37

以下是您需要应用的一些步骤

  • 调试结果
  • 识别差异
  • 进行相应修改

这些简单的步骤将使您在计算机科学的世界中走得更远

Here are some steps you need to apply

  • Debug the the result
  • Identify the difference
  • Modify accordingly

These simple steps will get you far in the world of computer science

随遇而安 2024-11-25 22:08:37

我想你应该知道数组中已经放入了什么。你可以使用 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 .

冷心人i 2024-11-25 22:08:37

我注意到第一个 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文