Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试创建一个 Mysql 查询,我可以在互联网上的任何页面上放置一个 iframe,它可以找到页面地址并检查它是否在数据库中。如果是这样,我必须从具有相同变量的其他行返回一个值。
最后,我必须能够将这些转换为变量并将它们显示为 php 格式的文本。
对此的任何帮助将不胜感激,但我意识到这很复杂,如果您对此处的任何问题有答案,请回答。
我会为你处理前三个:
$full_url = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]"; $query = "SELECT url FROM tableWithURL WHERE url = '$full_url'"; if ($result = $mysqli->query($query)) { $row = $result->fetch_assoc(); }