XML

  <function name="rpcf_user5_card_payment" id="-0x4205">
    <input>
      <integer name="account_id" />
      <integer name="card_id" />
      <string name="secret" />
    </input>
    <output/>
  </function>

PHP

	function rpcf_user5_card_payment($account_id,$card_id,$secret) { //-0x4205
		$ret=0;
		if (!$this->connection->urfa_call(-0x4205)) {
			print "Error calling function ". __FUNCTION__ ."\n";
			return FALSE;
		}
		$packet = $this->connection->getPacket();
		$packet->DataSetInt($account_id);
		$packet->DataSetInt($card_id);
		$packet->DataSetString($secret);
		$this->connection->urfa_send_param($packet);
		$this->connection->urfa_get_data();
	}