06-05-2007, 05:36 AM
Don't remember, need to try. Instead of IntPost you can use functions of Http class.
Example
Example
ARRAY(POSTFIELD) a.create(2)
a[0].name="testtxt"; a[0].value="some text"; a[0].isfile=0
a[1].name="testfile"; a[1].value="$desktop$\test.gif"; a[1].isfile=1
Http h.Connect("www.xxx.com" "" "" 433) ;;433 is https port
str response
if(!h.PostFormData("form.php" a response)) end "failed"
out response