custom environment variables

jaapvstr

Verified User
Joined
Sep 15, 2006
Messages
51
Is is possible to catch the value of my own input fields?

On the create_user.html page i created a field named "redirectfield" and i want this value to be what the newly created webpage redirects to.

I'm not very good at shell scripting. Is it possible to retrieve this value? simply using $redirectfield doesn't work for me.

I tried mailing it by using a shell script and linking it to a php backend.

Shell script:
Code:
MAILMSG=/usr/local/directadmin/tmp/mail.message

if ["$redirectfield" != '']; then
        echo "dit domein is een doorlink" > $MAILMSG
fi

mail.message is what the php script mails to me afterwards. (that part works)
 
Last edited:
Back
Top