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...