
-----------------------------------
Ravage
Thu May 01, 2003 11:58 am

Auto Send Form
-----------------------------------
For my site I was wondering if there was a way to make a program that the user could dl fill it out accordingly and when done the program would auto send the info to me?

-----------------------------------
DarkHelmet
Thu May 01, 2003 12:06 pm


-----------------------------------
use better topic names. need help is a really bad one. name it something that actually says what your problem is in on or two words.

-----------------------------------
Ravage
Thu May 01, 2003 12:12 pm


-----------------------------------
sorry didnt notice the post saying "no I need help" for subject's

-----------------------------------
Blade
Thu May 01, 2003 12:19 pm


-----------------------------------
and he isnt talking about turing help... probably psychological help ;) or maybe help in bed...

in answer to your question, use the Sys.Exec command, you can collect the information into variables, then at the end use Sys.Exec for them to send using outlook express or whatever. you could use it with internet explorer. just use an ifstatment, and use a link in IE with mailto:youremail@hotmail.com

-----------------------------------
Dan
Thu May 01, 2003 7:21 pm


-----------------------------------
if you make a php progame on your web site you can send data to it using Net.OpenURLConnection. 

you whould use it like 



var name:string:= "dan"
var site:string:= "compsci"

Net.OpenURLConnection("http:// www.mysite.com/getdata.php?name="+name+"&site="+compsci)

