Thank you!

Problems installing LinkMan?
Post Reply
Tig

Thank you!

Post 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:
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Post 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
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
tig

Thank you...

Post by tig »

Thank you, thank you! I will try that.

Have a great weekend :D
Post Reply