Gossamer Forum
Quote Reply
Link count
How do I display my total Links counts on my main index page. My links is in a subfolder named directory
Quote Reply
Re: [Sies] Link count In reply to
Have a look at these: http://gossamer-threads.com/...orum.cgi?post=289885

You could try creating a template called totals.html with the globals tags that you want and then calling it via SSI to your main page.

Last edited by:

MJB: Apr 10, 2006, 3:25 PM
Quote Reply
Re: [MJB] Link count In reply to
Thanks,
but what how do I call it?
<!--#include file ="/cgi-bin/path_to_links/admin/templates/luna/total.html"--> ???
Quote Reply
Re: [Sies] Link count In reply to
Try something like this:

Code:
For .shtml or SSI enabled pages:

<!--#include virtual="/cgi-bin/links/page.cgi?p=totals"-->

For .php pages:

<?php virtual("/cgi-bin/links/page.cgi?p=totals"); ?>

Change the path to your links directory, not your templates.