hello need help here pls help me.
$gender = 'M';
$bdate = '19740211';
$berkzNumber = '1008437';
$voicePin = '1234';
$age = '30';
$_url = "http://123.456.789.012/test/testinput.php";
$params = "gender=$gender&bdate=$bdate&voiceid=$bNumber&pin=$voicePin&age=$age";
$ch = curl_init();
curl_setopt($ch, CURLOPT_POST,1);
curl_setopt($ch, CURLOPT_POSTFIELDS,$params);
curl_setopt($ch, CURLOPT_URL,$_url);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_USERAGENT, $defined_vars['HTTP_USER_AGENT']);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
$result=curl_exec ($ch);
curl_close ($ch);
since i processed it. just give me an error like this
Please enter a valid gender (M/F).
Please enter a valid date (YYYYMMDD).
Please enter a numeric voice ID.
Please enter a numeric PIN.
Please enter a numeric age.
Please enter required field/s.
does this means the params are not being forwarded what do u think would be the problem?
thank you in advance