Log in

View Full Version : report good/ bad and broken link



olanexhari
02-09-2010, 11:06 PM
Hello everybody,,,

I was wandering if anybody have any Idea how to write or where to find script where user can Report good/bad and broken link like this..

http://www.watch-movies-online.tv/movies/edge_of_darkness

thank you

djr33
02-10-2010, 12:35 AM
It's entirely based on the system you are using. Create a database that stores links and then act on the input accordingly: if someone clicks the "broken" link (possibly page.php?item=X&rating=broken), then delete it from the database (or submit to admin to check). You could also stores 'votes' for good and bad then rank the links based on that.

None of these things are individually hard, but together it becomes a little complex and especially within your existing system.

To do this, I suggest finding a database tutorial and taking it slowly/step by step.

If you want to use PHP and MySQL (a common method), look at the tutorial here:
http://php-mysql-tutorial.com
Start at the LAST tutorial because they go in reverse order with the newest first-- the last one is the easiest/place to start (it'll be on page two).

olanexhari
02-11-2010, 05:26 PM
Thank you very much

I will try it..