ConFoo Montreal 2026: Call for Papers

Voting

: seven plus one?
(Example: nine)

The Note You're Voting On

jay
10 years ago
Remember to match content with Content-type:

<?php

$data
= array(
'var1' => 'some content',
'var2' => 'doh'
);

$opts = array('http' =>
array(
'method' => 'POST',
'header' => 'Content-type: application/json', // here...
'content' => json_encode($data) // and here.
)
);

. . .

?>

<< Back to user notes page

To Top