Well the database only includes one table thats to do with this, and that is siteUserImages - this includes 1 field (ImageAddress).
This is the code to the PHP file that adds the image addresses...
<html>
<body>
<?php
include("config.inc");
if ($submit) {
// process form
$db = mysql_connect($dbhost,$dbuser,$dbpasswd);
mysql_select_db($dbname,$db);
$sql = "INSERT INTO siteUserImages (ImageAddress) VALUES ('$ImageAddress')";
$result = mysql_query($sql);
echo "Thank you! Image Added.\n";
} else{
// display form
?>
<form method="post" action="<?php echo $PHP_SELF?>">
Image:<input type="Text" name="ImageAddress"><br>
<input type="Submit" name="submit" value="Enter information">
</form>
<?php
} // end if
?>
</body>
</html>