jQuery.post('//steamcommunity.com/market/removelisting/'+res[1],
{sessionid: g_sessionID}
)
$url = "https://steamcommunity.com/market/removelisting/1942658372023371271";
$post_data = array (
"sessionid" => "ID_СЕССИИ_STEAM"
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// указываем, что у нас POST запрос
curl_setopt($ch, CURLOPT_POST, 1);
// добавляем переменные
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
$output = curl_exec($ch);
curl_close($ch);
echo $output;