Add an url

In here you can add an url to your account. If the page you want to be monitored contains content that changes every time your page is loaded, you must add a variable to the url and set your page so that it doesn't when this variable is given.

For example, you have a clock that loads with php. The script looks like this:

<?php
$date=date("Y/m/d H:i:s");
echo("$date");
?>


You don't want this script to be monitored, because you'll get almost immediately an email that your page has been changed. Instead of this set the variable field to something like "id=websecurity"
Now change the script to:

<?php
$id=mysql_real_escape_string($_GET['id']);

if(id!="websecurity")
{
$date=date("Y/m/d H:i:s");
echo("$date");
}
?>

Look out: to use the mysql_real_escape_string function, mysql must be installed and your script must be connected to a database. You can leave it out, but it is highly recommended that you check your input as it is a security leak if you don't.

User-end languages like javascript are no problem.