如何获取页面的所有者

发布于 2025-01-06 10:16:52 字数 48 浏览 1 评论 0原文

我正在考虑编写联系表格,但我需要联系表格的所有者,而不是填写表格的人。我该怎么做?

I'm thinking of writing a contact form but I need to get the owner of the form, not the person who filled out the form. How can I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

人心善变 2025-01-13 10:16:52

要获取页面的所有者,请查询 page_admin FQL 表

fql?q=从 page_admin 中选择 uid,其中 page_id=PAGEID

To get the owners of a page, query the page_admin FQL table

fql?q=SELECT uid FROM page_admin WHERE page_id=PAGEID

心如荒岛 2025-01-13 10:16:52

不确定您在这里寻找什么,但例如,如果表单所有者的用户登录了正在使用表单的位置,那么您可以从 $_SESSION 数组中获取他的用户名,前提是您将他的用户名保存到登录过程中的该数组。

Not sure what you are looking for here, but for instance if a user who's the owner of the form is logged in where the form is being used, then you can get his username from the $_SESSION array, given that you saved his username into that array upon the login process.

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