我想不出标题的便利PHP东西;根据我们所在的位置显示不同的数据

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我想不出标题的便利PHP东西;根据我们所在的位置显示不同的数据相关的知识,希望对你有一定的参考价值。

If user enters city.php from footer.php, page will return certain string. If user enters independently, solution lets user see predefined string (in this case, 'your city').
  1. footer.php:
  2.  
  3. <ul>
  4. <li><a href="city.php?city=<?php echo urlencode("Blerg County"); ?>&state=<?php echo urlencode("Massachusetts"); ?>">Blerg County</a></li>
  5. </ul>
  6.  
  7. city.php:
  8.  
  9. <?php echo urldecode($_GET['city']); ?>
  10. and
  11. <?php echo urldecode($_GET['state']); ?>
  12.  
  13. solution:
  14.  
  15. echo isset($_GET['city']) ? htmlentities($_GET['city']) : 'your city';

以上是关于我想不出标题的便利PHP东西;根据我们所在的位置显示不同的数据的主要内容,如果未能解决你的问题,请参考以下文章

根据IP将用户重定向到子域

Google play 如何知道应用安装的国家/地区?

最差拟合算法

如何按某个属性排序进行映射

为啥 React 有自己的服务器?

数据表js和查询次数php mysql