0
Good morning. I’m trying to send some parameters through the url to another page but only one is being sent.
I’m sending it this way:
$('#page-wrapper').load("index.php?page=incluiPedido.php?cotacao=" + idCotacao + "&editar=" + false + "&itens=" + itens + "");
The requisition goes like this: http://dominio.localhost.com/incluiPedido.php?=cotacao=3
The other parameters do not appear!!
tries to take . php from the page parameter
– adventistaam
Hi! I took, the parameters were right but the page did not open :/
– Sara Kemily
Now in index.php Voce you can do include using your page parameter with . php
– adventistaam
Only the first parameter goes with question (?), the others go with and commercial (&), probably just change
?cotacao=
for&cotacao=
.– Benilson
Hi, I put as you said but only one parameter was sent...
– Sara Kemily