Jump to content
Fórum Script Brasil
  • 0

Parâmetro Bootstrap e PHP


MTavares

Question

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 by MTavares
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0
<!-- 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">&times;</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..

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...