inserting a space between each listing

Problems installing LinkMan?
Post Reply
Summer
Posts: 1
Joined: Wed Aug 30, 2006 10:58 pm

inserting a space between each listing

Post by Summer »

Hello,

I have the latest version of Linkman and would like to know how I can make it so that the script will insert a space between each listing that appears in the directory? I believe this will make it easier to read.

So, instead of the entries looking like this:

"CSS and Web standards - Tutorials and articles about CSS and web standards (in Portuguese)
UGA internet guides - UGA media is the European publisher of internet guides, business portals, travel guides and reference cd-roms."

.....They would look like this:

"CSS and Web standards - Tutorials and articles about CSS and web standards (in Portuguese)

UGA internet guides - UGA media is the European publisher of internet guides, business portals, travel guides and reference cd-roms."

Could you tell me how I would be able to make the script insert a space between each entry like the above example?

Thanks for your reply.

Summer
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

Open links.php in a PLAIN TEXT editor (Notepad, Wordpad) and change the HTML code in this line:

Code: Select all

 echo '<a href="'.$url.'" target="_blank" class="linkman">'.$title.'</a> - '.$description.'<br>';
Change it for example to

Code: Select all

 echo '<p class="linkman"><a href="'.$url.'" target="_blank" class="linkman">'.$title.'</a> - '.$description.'</p>';
Haven't tested it, but should work
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
november
Posts: 4
Joined: Sun Mar 12, 2006 5:46 pm

it works

Post by november »

I made the code change on my website and it works great. Take a look.

Marie

http://www.psychicmarie.com/linkman/links.php
Post Reply