i would like to search by title on my web page and not numbers.
how can i do this

im using below to search by numbers
PHP Code:
$id "%".$_GET["search"]."%";


$result mysql_query"SELECT vidnumber, titleid, hd, year,starring1,videotitle,starring2, directedby, filmplot1,dirid,starrid1,starrid2, trilogy,age, Runningtime FROM videolist WHERE vidnumber LIKE '".mysql_real_escape_string($id)."'")

 or die(
mysql_error());
while(
$row mysql_fetch_array($result)){
echo 
$row['videotitle'];