Hello All
Am stuck with this script.
i got 2 input objects and 1 button.
input1: email
input2: password
btn: Go
On click (btn go)
So far so good, don't look at the if and then results.Code:-- Retrieve Username and Password sEmail = Input.GetText("Input_Email"); sPassword = Input.GetText("Input_Password"); -- Convert user/pass combo to MD5 digests sUsernameMD5 = Crypto.MD5DigestFromString(sUsername); sPasswordMD5 = Crypto.MD5DigestFromString(sPassword); -- Initialize variables for submit action sCheckScriptURL = "http://www.yordomein.com/check_user.php"; tValuesToPass = {email_md5 = sEmailMD5, password_md5 = sPasswordMD5}; nSubmitMethod = SUBMITWEB_POST; nTimeout = 20; nPort = 80; tAuthData = nil; tProxyData = nil; -- Submit to the web sResult = HTTP.Submit(sCheckScriptURL, tValuesToPass, nSubmitMethod, nTimeout, nPort, tAuthData, tProxyData); -- Check the result ('1' is success) if sResult == "1" then end
I want to on theto get the folder of the email,Code:-- Check the result ('1' is success) if sResult == "1" then
Example: http://yordomein.com/emailfolder
In this folder there are ini files that get value's for the next page.
I hope you can help am really stuck int his one.
Many thanks![]()

