PDA

View Full Version : Link Indexer



Kaliber
February 13th, 2002, 03:22
Link indexing script

Does anyone have any experience with any link indexing scripts? I want to able to change the templates with ease.

I don't want something with 5million features...just something simple would be great.

Please include any experiences you have had.

megapuzik
February 13th, 2002, 03:51
You can try building one in php.

Kaliber
February 13th, 2002, 04:01
I guess that wouldn't be to hard.....

Got any tips (I now call you Mr. PHP :D)

roly
February 13th, 2002, 04:31
http://www.sslinks.co.uk - Free and written in PHP with a mySQL DB.

MN-Carl
February 13th, 2002, 04:33
Originally posted by MindRash
Link indexing script

Does anyone have any experience with any link indexing scripts? I want to able to change the templates with ease.

I don't want something with 5million features...just something simple would be great.

Please include any experiences you have had.

Why not just use either php or ssi ?

<?
includes "/path/to/file/nav.php";
?>

Or ssi .. which is very simple .. and easy to use :)
But not so many features as php :)

gyrbo
February 13th, 2002, 05:05
I was just about to look for the SSLinks URL. It's great!
I'm gonna write my own one soon that is capable of importing CSV files.

megapuzik
February 13th, 2002, 05:54
Originally posted by MindRash
I guess that wouldn't be to hard.....

Got any tips (I now call you Mr. PHP :D)

Its very easy (im that good at php :o )
OK first thing to do is make a form (later we will do this forum with password protection)
this form must contain a simple text area to put there a url.

after the form we need to add the link to a flat file, and when You add the link, add \n ,that mean that every link is in new line.

then, need to use file("bla.txt") to make a array that every line is an array compoment, then just loop the area in <a href="$array[$x]">asdasd</a>

this will give you all the he links hat you have, now, in the form add another text area for the link name, and put it in the same line with the link and bitween add something like ><><><, and then in the loop, explode the ><><>< for 1 link url, 2 link name.

thats a simple link adding system, do this script, and then we will index all in categories.