Redirect to URL via login.php
-----------------------------

You can provide link functionality from other applications into OpenDb by using a 
generic guest username/passwd combination.

The login.php requires you to specify a urlencoded 'redirect' variable as an argument 
to op=login.  You will also need to supply the correct uid=user and pass=passwd 
url parameters.  In newer versions of OpenDb (0.53+), the login.php will still 
redirect to specified URL, even if user is already logged in.

To load the listings for jpell, you would format a url like so:
http://www.mydomain.com/opendb/login.php?op=login&uid=guest&passwd=guest&redirect=listings.php%3Fuid%3Djpell

To see stats for OpenDb site, you would format a url like so:
http://www.mydomain.com/opendb/login.php?op=login&uid=guest&passwd=guest&redirect=stats.php

Remember that the 'redirect' must be urlencoded, otherwise the login form will only see the 
name of the php script, and no parameters.

Some basic urlencoded characters, you might need:
	? : %3F
	= : %3D
	& : %26

A final example, to see DVD's for jpell, you would have a url like:
	http://www.mydomain.com/opendb/login.php?op=login&uid=guest&passwd=guest&redirect=listings.php%3Fuid%3Djpell%26s_item_type%3DDVD

Which would result in a redirect url like so:
	listings.php?uid=jpell&s_item_type=DVD
