OK, sorry!
It would help if you post the entire content of your scripts.
Here she comes
#!/bin/sh
# DNS-Update @ DNSTEAM
#------------------------------------------------------------
# Custom dynamic DNS update handler.
#------------------------------------------------------------
IPADDR=$1
USERID=$2
PASSWD=$3
DOMAIN=$4
#------------------------------------------------------------
# Your handler starts here.
#------------------------------------------------------------
#lynx -cookies -source "http://dnsteam.de/dyndnsupdate.php?login=$2&password=$3&domain=$4" -dump
lynx -cookies -source "http://dnsteam.de/dyndnsupdate.php?login=LOGIN&password=PASSWORD&domain=DOMAIN.DE" -dump
#------------------------------------------------------------
# Your handler ends here.
#------------------------------------------------------------
exit 0
This is it.