You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser.
-
P
using the follwing code? $post_data = 'var1=123&var2=456';
$content_length = strlen($post_data);
header('POST /test.php HTTP/1.1');
header('Host: localhost');
header('Connection: close');
header('Content-type: application/x-www-form-urlencoded');
header('Content-length: ' . $content_length)...
-
P
the follwing code? $post_data = 'var1=123&var2=456';
$content_length = strlen($post_data);
header('POST /test.php HTTP/1.1');
header('Host: localhost');
header('Connection: close');
header('Content-type: application/x-www-form-urlencoded');
header('Content-length: ' . $content_length)...