如何在 igoogle 小部件中传递用户偏好变量

发布于 2024-12-06 17:52:52 字数 198 浏览 2 评论 0原文

您好,我已经使我的 igoogle 应用程序变得简单,尽管它基本上使用 xml/php 文件并获取一系列文章并显示它们。简单又美好。

现在我只需要传递用户想要展示的故事数量来完成它。 当他们单击 google 区域中的编辑设置时,我已经得到了下拉菜单,但我不知道如何将信息传递回我的 php/xml 文件并显示用户选择的故事数量。

任何人都可以帮忙。

Hi I've made my igoogle app simple though it is basically using an xml/php file and getting a series of articles and displaying them. Simple and nice.

Now I just need to finish it off with passing how many stories the use would like to show.
I've got the dropdown working for when they click edit settings in the google area but I'm at a loss on how to pass the information back to my php/xml file and display the number of stories the user has selected.

Can anyone help.

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

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

发布评论

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

评论(2

岁月染过的梦 2024-12-13 17:52:52

有一个关于使用 userpref 的简短文档。它可能对你有帮助。查看此 Google 文档,其中还列出了如何处理远程内容有两种类型 GET 和 POST,请查看此文档工作带有远程内容

There is a brief document about working with userpref. it may help you. Check this Google document and also they listed how to deal with remote content in two type GET AND POST, check this document also working with remote content

醉生梦死 2024-12-13 17:52:52

执行一个带有自动提交的

<select name='myfield' onchange='this.form.submit()'>
<option .... >
...
</select>
</form>

然后你会得到 $_POST['myfield']

do a <form>

with auto-submit

<select name='myfield' onchange='this.form.submit()'>
<option .... >
...
</select>
</form>

then you got $_POST['myfield']

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