Flex 4从php脚本获取数据?

发布于 2024-10-14 07:58:20 字数 664 浏览 3 评论 0原文

我正在使用 WordPress,并尝试将视频网址粘贴到视频播放器 我有从数据库视频网址获取的 php 脚本。

$post_id = $_GET['post_id'];

全局$wpdb;

$query = "从 wp_posts 中选择 * WHERE wp_posts.post_type = '附件' AND wp_posts.post_mime_type LIKE '%flv%' AND wp_posts.post_parent = $post_id";

$result = $wpdb->get_row($query);

$video = $result->guid;

有人可以帮助我完成这件事。

HTTPService id="video_url" 结果格式=“文本”

视频播放器 x="10" y="10" 宽度=“384”高度=“308”源=“此处” 我需要动态加载视频 URL” id =“videoDisplay”自动播放=“假”

页面加载时提取视频 URL。 从数据库和播放器中提取数据的脚本位于同一页面上。

有人可以帮我解决这个问题吗?

I'm working with wordpress,and trying to paste video url to video player
I have php script that get from I database video url.

$post_id = $_GET['post_id'];

global $wpdb;

$query = "SELECT * FROM wp_posts WHERE
wp_posts.post_type = 'attachment' AND
wp_posts.post_mime_type LIKE '%flv%'
AND wp_posts.post_parent = $post_id";

$result = $wpdb->get_row($query);

$video = $result->guid;

Can someone help me with this,to finish this thing.

HTTPService id="video_url"
resultFormat="text"

VideoPlayer x="10" y="10"
width="384" height="308" source="HERE
I NEED TO LOAD DINAMICLY VIDEO URL"
id="videoDisplay" autoPlay="false"

Video url is pulled when page loads.
Script that pull data from database and player are on the same page.

Can someone help me with this please.

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

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

发布评论

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

评论(1

折戟 2024-10-21 07:58:20

如果您在显示播放器的同一脚本上获取视频的 ID,则可以使用 flashvars 将数据解析为 Flex 应用程序。在这种情况下,不需要 HTTP 服务。您将使用 php 获取 id,然后,当您显示播放器时,您将向其发送 id:

查看此链接以获取有关如何设置 flashvar 的详细信息。

这个是为了了解如何在 flex4 中使用 flashvars。

If you are getting the video's id on the same script that displays the player you can parse the data to flex application using flashvars. In this case there is no need for the HTTPservice. You will use php to get the id and then, when you will display the player you will send to it the id:

Check this link for detailed info on how to set the flashvars.

And this one to see how you work with flashvars in flex4.

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