Skip to content

Instantly share code, notes, and snippets.

@riaf
Created June 7, 2010 06:46
Show Gist options
  • Save riaf/428300 to your computer and use it in GitHub Desktop.
Save riaf/428300 to your computer and use it in GitHub Desktop.
<?php
$url = 'http://***.php';
$data = array(
'channel' => '***',
'message' => 'ほげらほげら',
'password' => '***',
);
$options = array(
'http' => array(
'method' => 'POST',
'content' => http_build_query($data),
),
);
echo file_get_contents($url, false, stream_context_create($options));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment