Hello stack overflow friends in Spanish, my question is if you can help me to pass more than one variable in the following code, I will be very grateful
<script type="text/javascript">
function PagarCuotaCuenta(cuotas,importe,id_cuentacorriente){
var cuotas = cuotas;
var importe = importe;
var id_cuentacorriente = id_cuentacorriente;
document.location.href = "<?php echo base_url() . 'clientes/C_Cliente/PagarCuentaCorriente/' ?>" + importe;
}
</script>