Parameters are not being sent in the URL

Asked

Viewed 26 times

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

  • Hi! I took, the parameters were right but the page did not open :/

  • Now in index.php Voce you can do include using your page parameter with . php

  • 3

    Only the first parameter goes with question (?), the others go with and commercial (&), probably just change ?cotacao= for &cotacao=.

  • Hi, I put as you said but only one parameter was sent...

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.