
$cn=mysql_connect("localhost","root","") or die(mysql_error());
mysql_select_db("bdvideos",$cn);
$consulta=mysql_query("select Nombre, Fecha, Video from videos where Nombre like concat=("$_POST['txtbuscar']")",$cn)
while ($row= mysql_fetch_array($consulta))
{
echo .$row['Nombre'].;
echo .$row['Fecha'].;
echo .$row['Video'].;
}
gracias x adelantado u.U