MTavares Posted April 21, 2015 Report Share Posted April 21, 2015 (edited) Bom dia a todos. Estou usando o modal do Bootstrap para chamar uma página que contém valores PHP dessa forma: .... <div class="modal-content"> <?php include("modal.php"); ?> </div> Até aqui ttudo OK... porém quando passo algum parâmetro ele não me retorna a página: .... <div class="modal-content"> <?php include("modal.php?Key=valor"); ?> </div> Alguém sabe me informar o porque isso acontece? Obrigado! Edited April 21, 2015 by MTavares Quote Link to comment Share on other sites More sharing options...
0 Philipe SIlva Posted April 21, 2015 Report Share Posted April 21, 2015 <!-- Button trigger modal --> <button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal?key=valor"> Launch demo modal </button> <!-- Modal --> <div class="modal fade" id="myModal?key=valor" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> <h4 class="modal-title" id="myModalLabel">Modal title</h4> </div> <div class="modal-body"> ... </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> <button type="button" class="btn btn-primary">Save changes</button> </div> </div> </div> </div> o parâmetro deve ser informado no data-targert.. Quote Link to comment Share on other sites More sharing options...
0 MTavares Posted April 21, 2015 Author Report Share Posted April 21, 2015 Olá Philipe Silva. Obrigado pela ajuda. Vou testar aqui. Abraço Quote Link to comment Share on other sites More sharing options...
0 Philipe SIlva Posted April 22, 2015 Report Share Posted April 22, 2015 Ok amigo espero ter ajudado. :) Quote Link to comment Share on other sites More sharing options...
Question
MTavares
Bom dia a todos.
Estou usando o modal do Bootstrap para chamar uma página que contém valores PHP dessa forma:
Até aqui ttudo OK... porém quando passo algum parâmetro ele não me retorna a página:
Alguém sabe me informar o porque isso acontece?
Obrigado!
Edited by MTavaresLink to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.