Link Update Result
Update Failed!!!
\n");
echo("Link of that name does not exist at that level
\n");
}
else
{
$time = chop(ctime(time()));
$host=$REMOTE_HOST;
if( $host == "" )
{
$host=$REMOTE_ADDR;
}
$query = "update links set path='$qParent/$qName',name='$name',"+
"url='$url',owner='$owner',email='$email',"+
"description='$description',datetime='$time',"+
"host='$host',addedby='$addedby' "+
"where path='$qPath'";
if (msqlQuery($sock,$query) < 0)
{
fatal("Error : $ERRMSG\n");
}
echo("Link updated!
\n");
}
$urlParent = urlEncode($parent);
>