video file in php

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
swathisundar
Forum Newbie
Posts: 4
Joined: Thu Feb 04, 2010 2:19 am

video file in php

Post by swathisundar »

hai friends

how to create video file in php and i want store the video file in database and retrieve video(ex:Particular id=particular video).

how it is possible....

anybody help me....


Regards
Swathi.
hemakumarrr
Forum Newbie
Posts: 7
Joined: Mon Nov 09, 2009 12:42 am

Re: video file in php

Post by hemakumarrr »

you can embed media player in browser and save the video files in server.. store the file name in database..

<embed type="application/x-mplayer2" id="music1"
pluginspage="http://www.microsoft.com/Windows/MediaPlayer/"

src="videos/<?PHP echo $pl; ?>.wpl"
name="MediaPlayer1"
width="300"
height="70"
controltype="2"
showcontrols="-1"
showstatusbar="0"
AutoStart="-1"
ShowAudioControls="-1"
ShowPositionControls="0"
Shuffle="2">

$pl file name in database
Post Reply