<HTML>
<HEAD>
<TITLE>Dynamic FreeDNS IP Address Updater -Specify the Location of "getmyip.php"</TITLE></HEAD>
<BODY>
<H2>Dynamic FreeDNS IP Address Updater - Set the URL Where "getmyip.php" Exists</H2>
<?php
include "dbconnect.php";
$sql = "UPDATE `url` SET `getip` =
'$_POST[url]' LIMIT 1;";
if (!mysql_query($sql,$con2))
{
die('Error: ' . mysql_error());
}
echo "Dynamic FreeDNS will now use the script located at ".$_POST[url]." for retrieving the internet protocol address of this server.";
include "closedb.php";
include "footer.php";
?>