如何使用php从mysql中提取flash视频

发布于 2024-09-27 12:08:02 字数 276 浏览 2 评论 0原文

我试图使用 PHP 从 MySQL 中提取 .swf 文件,我用 ID 设置了数据库中的所有内容并正确地使用了它。我不确定“类型”是否必须有什么特别的,现在它只是一个“VARCHAR”,当改变它的 javascript 部分时,闪存会自动生成——在我试图通过将其放入值类似

             < param name="movie" value="<?php echo $row['video_path']; ?>" />

,但那不起作用

im trying to pull .swf files from MySQL by using PHP, ive set everything in the database up with an ID and licked it properly. Im not sure if the 'type' has to be anything special, right now its just a 'VARCHAR' and when altering the javascript part of it that that flash automatically generated-- in the i tried to echo it out by putting it in the value like

             < param name="movie" value="<?php echo $row['video_path']; ?>" />

but thats not working

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

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

发布评论

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

评论(1

软糖 2024-10-04 12:08:02
<object width="550" height="400">
<param name="movie" value="<?php echo $row['video_path']; ?>">
<embed src="<?php echo $row['video_path']; ?>" width="550" height="400">
</embed>
</object>

我希望这就是你正在尝试的。您从 mysql 获取视频路径..

<object width="550" height="400">
<param name="movie" value="<?php echo $row['video_path']; ?>">
<embed src="<?php echo $row['video_path']; ?>" width="550" height="400">
</embed>
</object>

I hope this is what you are trying. You getting the video path from mysql ..

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