is there a script that can make "Report Broken Link" button and when people click it , it alarm me the link is broken?
is there a script that can make "Report Broken Link" button and when people click it , it alarm me the link is broken?
A more user friendly way would be to create a custom 404 page, and to add a snippet to get the url of the broken page and add it to a database.
█ Xavier L | Community Public Relations Manager (Free Hosting Support)
█ Yes, my position is too cool to even exist!
█ How am I helping? Rate this post by clicking theicon below! (this is even better than "liking" a post)
█ Terms of Service | Acceptable Use Policy | x10Hosting Wiki
if it's an offsite url, then have a db, make a table called broken_links, add a row named url, and in the code, if they click on "Report Broken Link", it'll add it to the db.
Granted you need to know php and mysql to do this, i can show u how the query might look:
PHP Code:mysql_query("INSERT INTO broken_links (url) VALUES ('".$url."')");