TrustedPlaces     refinance your mortgage

export

Now you can export to your website or blog list of your latest movies or list of popular movies, or any other list that is available in RSS on this site.

Here's how to do this:

Add this piece of code to your website / blog template:

<script language="JavaScript"
 src="http://myfilmz.net/rss/user/kuchin/?type=js&limit=5" 
type="text/javascript"></script>

Where you should replace 'kuchin' by your username if you want to get list of your movies, not mine :)

Actually, as you can see, you just take any RSS link on this site and add

?type=js&limit=5
part where 'limit' parameter can control number of items shown.

If you want to control how it will look on your site, this is how it looks like:

<div class="movies">
<p class="movies_title"><a href="http://myfilmz.net/kuchin"
 title="Latest movies added by kuchin to MyFilmz" 
 target="_blank">MyFilmz/kuchin</a></p>
<ul class="movies_items">
<li><a href="..." title="..." target="_blank">The Big Moo</a></li>
</ul></div>

So you just need to add styles to those element classes and subclasses.
For example, something like this:

<style>
.movies {
  border: 1px solid #000;
  width: 15em;
  }
.movies_title {
  text-align: center;
  }
.movies_items {
  list-style-type: none;
  margin: 1em;
  }
.movies_items li a:hover {
  background-color: #CCC;
  }
</style>

New:
If you want to see images, add images=1 parameter to the request.