|
|
Can I create an IMDB search box on my own blog / site?I've been building a celebrity blog and want to add a simple feature where readers can get the filmography and latest projects for movie stars like Angelina Jolie, Brad Pitt, Tom Cruise and Nicole Kidman. So what I want is to have pre-defined searches (on IMDB, preferably) for specified actors and actresses and also allow users to type in another name if they'd like. How do I do that?? Sounds like a great addition to a celebrity / movie star weblog, I have to say. It's refreshing to hear from someone who sees their blog as a jumping-off point to the wealth of information on the Web rather than an isolated island! Like you, I am also a big fan of the Internet Movie Database (aka "IMDB" or, to be more accurate, "IMDb", but either is fine for our work here!) and use it frequently enough that I know I can simply type in a URL like "http://imdb.com/find?" followed by the word or words, separate with a plus sign, to get what I want and sidestep the search engines entirely. Try it: http://imdb.com/find?casablanca. :-) That doesn't really help you too much, though it'll work for fixed searches like "Angelina Jolie", which can simply be encoded as http://www.imdb.com/find?angelina+jolie. In fact, using that basic pattern you should be able to nail all the actors on your short list. If that doesn't work, try doing a search, then right clicking on the matching entry in the search results. Like this: ![]() Choose "Copy Link" and you'll be able to just paste the resultant URL into your own blog template to have a direct link to their page. In this case, by the way, you can find lots of information about Brad Pitt here: http://www.imdb.com/name/nm0000093/. To build a search box, we could actually delve into the intricacies of the actual IMDb search engine, or we could just be lazy and notice that a search on the site produces a URL like "xx?q=pattern". This means that we can just produce our own search box: <form method="get" action="http://www.imdb.com/find" />
look for: <input type="text" name="q" /> <input type="submit" value="go!" /> </form> Which, when we actually code it, looks like this: look for: That's what you want. Done. Simple and quick!
More Useful HTML, JavaScript and Web Site Programming Articles:
✔ How to Create Predefined Google Image Search Links?
Thanks for the Amazon URL [see Creating Amazon Search Links]. That worked beautifully. In fact, I sent you $5.00 for coffee in thanks....
✔ Can I embed a Facebook search box on my blog site?I've seen your articles about how to add a Twitter or Google search box on a Web page, but I have a tougher...
✔ Can I use CSS for drop shadows on my blog?I want to give my site a bit of a facelift and add some neat graphical elements. One of which is drop shadows....
✔ How can I embed interactive photo panoramas on my site/blog?I read through your blog entry about how to take panoramic photos with iOS 6 and an iPhone 5 and got enthused. I've...
✔ How can I create a Twitter search URL shortcut?I'd like to add a few Twitter search links to my Web site. Is that possible, or does Twitter prohibit this sort of...
Let's stay in touch!
Sign up for my weekly AskDaveTaylor Newsletter and you'll receive even more tech and gadget help
right to your inbox, along with exclusive news and industry updates. It's good stuff. I promise!
Categorized:
HTML, JavaScript and Web Site Programming
(Article 8611,
Written by Dave Taylor)
Tagged: angelina jolie, blogging, brad pitt, imdb, nicole kidman, tom cruise Previous: How do I identify individuals in a photograph on Facebook? Next: Do I need to use a cover letter to apply for a job? Reader Comments To Date: 2Marneen Fields said, on February 25, 2009 7:52 AM:
Read your article. Check me out on the imdb.com, enter Marneen Fields in the search box and click GO. What services or blog sites are good for an actor to use to get more exposure on imdb.com?
I do have a comment, now that you mention it!Check This Out Too... |
Recent Entries
Look for Answers
Recommended
All Our Categories
Apple iPad Help
Articles and Reviews Auctions and Online Shopping Blogs and Blogging Building Web Site Traffic Business and Management Computer and Internet Basics d) None of the Above Facebook Help Google Gmail Help Google Plus Help HTML, JavaScript and Web Site Programming Industry News and Trade Shows iPhone and Cell Phone Help iPod, Sony PSP and MP3 Player Help Kindle Fire Help Mac OS X Help Pay Per Click (PPC) Advertising Pinterest Help Search Engine Optimization (SEO) Shell Script Programming Tech Support Video Help The Writing Business Twitter, LinkedIn and Social Network Help Unix and Linux Help Video Game Tips and Help Windows PC Help Find Me on Google+ ADT on G+ |
I have an idea: why don't you use yahoo news API?. With it you can grab the latest news (in real time) of the celebrity of your choice.
It returns an XML file which you can then parse. That will enhance and add value to your site!
Check http://developer.yahoo.com/search/news/V1/newsSearch.html (see for instance the example of madonna)
Regards