HTML template export on multiple pages

If you made a template for printing or HTML export, you can offer it to the others here. You can also ask here for help about these templates
Post Reply
itsanogo

HTML template export on multiple pages

Post by itsanogo »

Hi, I have modified a template to fit my needs. It is called with the php include function.

Here's the code:

Code: Select all

<style TYPE="text/css">
  text,body,p,div,span,th,td,ul,li { FONT-SIZE: 9pt; FONT-FAMILY: Verdana; color: white; background: black; }
  HR { color: black; }
  A:link { COLOR: #FFFFFF; background: black; text-decoration:none; }
  A:visited { COLOR: #FFFFFF; background: black; text-decoration:none; }
  A:hover { COLOR: #CCCCCC; background: black; text-decoration:none; }
  A:active { COLOR: #FFFFFF; background: black; text-decoration:none; }
  td.blk { color: white; background: black; border: solid; border-color: #CCCCCC; border-width: thin; }
  table.blk { color: white; background: black; border: solid; border-color: black; border-width: thin; }
  table.lgt { color: white; background: black; border: solid; border-width: thin; border-color: #CCCCCC; }
  td.lgt { color: white; background: black; border: solid; border-width: thin; border-color: #CCCCCC; }
  p.title { font-size: 9pt; font-weight: bold; }
</style>
Catalog updated on $$DATE.<P></P>
<table class="blk" border="1" cellspacing="0" cellpadding="5"><tr>
<td class="blk" nowrap><strong>Original Title</strong></td>
<td class="blk" nowrap><strong>Year</strong></td>
<td class="blk" nowrap><strong>Lenght</strong></td>
<td class="blk" nowrap><strong>Size (MB)</strong></td>
<td class="blk" nowrap><strong>Resolution</strong></td>
<td class="blk" nowrap><strong>Source</strong></td>

</tr>$$ITEM_BEGIN<tr>

<td class="lgt"><a href="$$ITEM_URL" target="_blank">$$ITEM_TRANSLATEDTITLE</a></td>
<td class="lgt">$$ITEM_YEAR</td>
<td class="lgt">$$ITEM_LENGTH</td>
<td class="lgt">$$ITEM_SIZE</td>
<td class="lgt">$$ITEM_RESOLUTION</td>
<td class="lgt">$$ITEM_SOURCE</td>

</tr>$$ITEM_END</table>

<p><strong>Total: $$TOTALMOVIES movies</strong></p>
<p><a href="http://www.antp.be/software/moviecatalog/" target="_blank">Ant Movie Catalog</a>.</p>
<p> </p>
How can I export the list with a maximum of 50 movies per page. I need to be able to browse from 1 page to the next and back?

Thanks for any help,

itsa
antp
Site Admin
Posts: 9651
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Post by antp »

Nothing exists for splitting movies into pages of N movies, sorry.
Post Reply