PDA

View Full Version : connect through forms


draxsath
19-01-2003, 23:12
logging in through a form.

i'm an HTML novice. I want to use the teamspeak://xxx.xxx.xxx.xxx/channel=Channelname?loginname=CHEFTEST?password=te st?nickname=TESTER sytnax top make a form on my website so that people can just type in thier nick and click a button and it loggs them onto the server wit thier nick.

not sure how to pull this off, some help please?

Brain
19-01-2003, 23:31
i haven't ever tried this, but here's my best guess:

the form's action should be the server address, enctype should be multipart/formdata
and the other data you need should be entered like this:
< input name="channel" size=20 > < /input >

if that doesn't work you might need to switch to php. after submitting the form build a redirect:

header("Location: channel=$channel?loginname=$loginname?password=$pa ssword?nickname=$nickname");

good luck testing

bierdopje
23-04-2003, 10:22
BUMB !!

Hunter_xTx
23-04-2003, 23:58
hey draxsath if you get it to work would u mind sharing your code with us ....i been wornding if it was possably to do .

isaio
29-04-2003, 03:20
I'm also interested..... PM for my email or with the code

bierdopje
06-06-2003, 14:36
Take a look in the source of this page, it may help..
http://ts.dutchfubar.com


Greet'Z
Rik, bierdopje

isaio
06-06-2003, 19:56
thanks this is just what i need.