Fatal error: Call to undefined function curl_init() in C:\xampp\htdocs\lol.php on line 9
Basically this isn't working, I have no idea what's wrong with it all of the fields in the POST request are correct (As a HTML post form with a action to the URL works perfectly).
Script:
<?php
$url = 'myurl';
$postData = array();
$postData['name'] = 'jay'
$postData['age'] = '0';
$postData['gender'] ='female';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postData);
$result = curl_exec($ch);
curl_close($ch);
?>