Loading php/examples/simplepost.php +5 −3 Original line number Diff line number Diff line # # A very simple PHP example that sends a HTTP POST to a remote site # <?php // // A very simple PHP example that sends a HTTP POST to a remote site // $ch = curl_init(); Loading @@ -10,3 +11,4 @@ curl_setopt($ch, CURLOPT_POSTFIELDS, "postvar1=value1&postvar2=value2&postvar3=v curl_exec ($ch); curl_close ($ch); ?> Loading
php/examples/simplepost.php +5 −3 Original line number Diff line number Diff line # # A very simple PHP example that sends a HTTP POST to a remote site # <?php // // A very simple PHP example that sends a HTTP POST to a remote site // $ch = curl_init(); Loading @@ -10,3 +11,4 @@ curl_setopt($ch, CURLOPT_POSTFIELDS, "postvar1=value1&postvar2=value2&postvar3=v curl_exec ($ch); curl_close ($ch); ?>