Here is the code snippet of the problem. (unexpected ‘;’ on line 57) I had my developer intentionally make an error to take down page bc of non payment from client. Now me an the developer are not speaking and he want correct whatever error he made to disrupt the page. I know it is a simple fix though. the 56 and 57 is just to show you which line is line 57, webpage is http://www.holmesbailbonding.com/online-north-carolina-bailbond-paymentss, this is an evalon payment gateway form
<?php $queryString = ""; foreach($_REQUEST as $key => $value) { if($queryString != "") { $queryString .= "&"; } echo $queryString .= $key . "=" . urlencode($value); } $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $queryString . "&ssl_merchant_id=$ssl_merchant_id". "&ssl_user_id=$ssl_user_id". "&ssl_pin=$ssl_pin". 56 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); 57 curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); curl_setopt($ch, CURLOPT_VERBOSE, true); $result = curl_exec($ch); curl_close($ch); ?>This function call isnt complete
[php]curl_setopt($ch, CURLOPT_POSTFIELDS, $queryString .
“&ssl_merchant_id=$ssl_merchant_id”.
“&ssl_user_id=$ssl_user_id”.
“&ssl_pin=$ssl_pin”.[/php]