Play video in php...Help please...PHP programmer .....?

bapi

New member
I want to play video in php. Video path id store in my mysql database and file is in my server.
I am using this code.

while($row=mysql_fetch_array($ans))
{
$name=$row['vedio'];
echo "<embed src='vedio/$name' autostart='false' loop='false' height='300' width='350'>";
}
The video is playing ,but i want to attach a picture in in front of video, When it is stop.Like You Tube.
How can i do this???
 
Back
Top