Jump to content

Featured Replies

Posted

how would i go about making something like this

http://aycu20.webshots.com/image/45179/2005834391681286186_rs.jpg

 

where they type their info in and click send and sends to email?

  ValveSpy said:
how would i go about making something like this

http://aycu20.webshots.com/image/45179/2005834391681286186_rs.jpg

 

where they type their info in and click send and sends to email?

 

In order to place a Login Mechanism on a website, you will need to utilize the FORM script in the XML language. You can then send the FORM information to a CGI script, in which you can rout the data to your email port. Windows functionality for the FORM function is somewhat hindered though, as it does not allow for the CGI script. Hope this helps! :wiggle:

  • 1 month later...

In vb6 you could...

add a couple text boxes and buttons

and then using the inet control,

submit the data to a database or a php login script

when you click submit.

 

It's actually pretty simple,

try something along these lines...

 

Dim username, password as string
username = txtUsername.text
password = txtPassword.text
inet.OpenURL("http://bleh.com/mylogin.php?user=" & username & "&pass=" & password)

 

hope that helped a little :)

  negro por que said:
XML??? this is a completely separate down loadable executable.

 

How dare you question kraizer.

Guest
This topic is now closed to further replies.