SOLVED
SCAR Code:program New;
var ai: integer;
s: string;
begin
ai := InitializeHTTPClient(false, false);
AddPostVariable(ai, 'test', 'failtest');
PostHTTPPageEx(ai, 'http://www.frement.net/scar/test.php');
s := GetHTTPPage(ai, 'http://www.frement.net/scar/test.php');
writeln(s);
FreeHTTPClient(ai);
end.
Ok, so that should work, right? The output i get:PHP Code:<?php
echo $_POST["test"];
?>
Code:Successfully compiled (23 ms) Successfully executed






Reply With Quote







