Page 1 of 1

Thank you!

Posted: Thu Jun 16, 2005 10:26 pm
by Tig
First off, I would like to thank you for such a clean script. I love its ease and header/foot options.

I fully understand its limitations of only allowing 50 links per page, and I have worked around that by simply adding additional 'folders' with the script in them. No problem there! However, I would like to know how to add the option to add a link to continue on to another page of links just above the 'powered by' link. When I try to do this, of course, I end up getting errors on those lines.

My point is at the end of the links (at the links.php page) I would like it to read this way:
Add Your Link (and then a link to form.html) | Read More Results (and then a link to the next folder)
Powered by PHP link manager 1.0.1 from PHPJunkYard - free php scripts


Instead of this way:
Powered by PHP link manager 1.0.1 from PHPJunkYard - free php scripts

Is there a way to do this?

And, again, thank you! :wink:

Posted: Fri Jun 17, 2005 10:23 am
by Klemen
Hi,

The problem probably is with escaping quotes. You should escape all quotes in your code with a backslash \ . So instead of " you should use \"

Example:

WRONG:

<p align="center"><a href="page2.htm">Next page</a></p>

OK:

<p align=\"center\"><a href=\"page2.htm\">Next page</a></p>

Try this and it should work.

Regards

Thank you...

Posted: Fri Jun 17, 2005 4:50 pm
by tig
Thank you, thank you! I will try that.

Have a great weekend :D