zackster
03/11/2022, 8:20 PMjumpmaster
03/11/2022, 10:07 PMScott Steinbeck
03/23/2022, 7:00 AMScott Steinbeck
03/23/2022, 4:54 PMcfhttp(method="POST", charset="utf-8", url="<https://www.google.com/>", result="result") {
cfhttpparam(name="q", type="formfield", value="cfml");
}
writeDump(result);
or
httpService = new http(method = "POST", charset = "utf-8", url = "<https://www.google.com/>");
httpService.addParam(name = "q", type = "formfield", value = "cfml");
result = httpService.send().getPrefix();
writeDump(result);
I figure i should do it in script either way, to try and discourage tag usageScott Steinbeck
03/25/2022, 6:06 PMzackster
03/26/2022, 3:07 PMzackster
03/26/2022, 3:09 PMScott Steinbeck
04/05/2022, 10:04 PMScott Steinbeck
04/06/2022, 6:45 PMzackster
04/06/2022, 7:16 PMScott Steinbeck
04/10/2022, 3:27 AM