can you help me? I have this line:
$orderRequest = new CreateOrderRequest(null, "BTC", null, $currency, $amount, $orderDescription, "en", $callbackUrl, $successUrl, $cancelUrl);
I need to print: $orderRequest
I do it like this:
exit("orderRequest: {$currency} {$amount}; {$orderDescription}; {$callbackUrl}; {$successUrl}; {$cancelUrl}");
Maybe there is an easier way to do this?
exitstatement$orderRequest, just the variables you sent to its constructor. Apart from that, you might want to send something back that the receiving end can do something with, like html or json.