I had been using Drupal 5.7. I had created modules like moviehome.module and page page-moviehome.tpl.php .
I need to implement search functionality on this page say need to search movies from Db.
So how i can implement search mechanism in moviehome.module or page-moviehome.tpl.php file.

I had created hook
function moviehome_search($op = 'search', $keys = NULL)
{
}
in moviehome.module but dont have idea about to call this and where to code so that search results will
appeared on my page.
Does i need to create another page for showing search results? If so then how i can?