Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

paulaodaregulage

receber variável no iframe

Recommended Posts

Boa tarde Srs,

eu gostaria que minha página onde existem 2 iframes  ,mostrasse relatórios através de uma  variável enviada .

 

segue abaixo os arquivos.

 

formulario1.php

 

<form name="busca" method="post" action="relatorio2.php" target="pesquisa">

		<table >

	
<tr>
 <td><input type="text" name="material"  style="width:85%;font-family:arial;font-size:10" placeholder=""   value="">
		
	<BR>
	 <input type="submit" name="botao" value="Pesquisar" class="btn btn-success" style="width:98%;font-family:arial;font-size:10" > 
	</td>
	</tr>

</table>
  
    
</form>

 

 

no formulario2.php

 

<?php $material=$_POST['material'];  


echo $material; ?>


<table id='form' class="table table-striped table-bordered table-hover" > 
  

  <tr>

<Td>
  <iframe src="info1.php" name="pesquisa" width="500" height="3550" scrolling="yes" frameborder="0" style="border:0px"></iframe>

     
</td>

<Td>
  <iframe src="info2.php" name="pesquisa" width="500" height="3550" scrolling="yes" frameborder="0" style="border:0px"></iframe>

     
</td>
</tr>


	
	</TABLE>

 

 no arquivo info1.php

<table id='form' class="table table-striped table-bordered table-hover" > 


    <!-- linhas -->
    <tr>
        <th width='25%'>
           MATERIAIS
        </th>
		
		
		<th width='25%'>
            N DE SERIE
        </th> 
	
		

	    
    
    <?php
  $material=$_POST['material']; 

    $sql = "SELECT *  FROM material WHERE 
	 material='$material' ";
   $res = mysql_query($sql); 
    while($linha = mysql_fetch_array($res)){ 
    ?>
    <tr>
      <td>
           <font color='green'> <?php echo $linha['material'];?>
        </td>
		
		<td>
           <font color='green'> <?php echo $linha['serie'];?>
        </td>


    </tr>
    <?php
    }
    ?>

</table>

no info2.php

 

<table id='form' class="table table-striped table-bordered table-hover" > 
<?php
    $material=$_POST['material'];  
 ?>

    <!-- linhas -->
    <tr>
        <th width='25%'>
           MATERIAIS
        </th>
		
		 
		<th width='25%'>
            N DE SERIE
        </th> 
	
		

	    
    
    <?php

  $material=$_POST['material']; 

    $sql = "SELECT *  FROM vendas WHERE 
	 material='$material' AND status='VENDIDO' ";
   $res = mysql_query($sql); 
    while($linha = mysql_fetch_array($res)){ 
    ?>
    <tr>
      
		
		<td>
           <font color='green'> <?php echo $linha['material'];?>
        </td>
		
		<td>
           <font color='green'> <?php echo $linha['serie'];?>
        </td>

    </tr>
    <?php
    }
    ?>

</table>

 

 

se puderem ajudar...

 

 

Compartilhar este post


Link para o post
Compartilhar em outros sites

$_SESSION OU $_GET no link do iframe.

Ex:

$_SESSION['material'] = $material;

 

ou

 

<iframe src="info1.php?material=<?php echo $material;?>" name="pesquisa" width="500" height="3550" scrolling="yes" frameborder="0" style="border:0px"></iframe>

Compartilhar este post


Link para o post
Compartilhar em outros sites

Bom temos algumas coisas para fazermos.

como você vai chamar no iframe, ele não vai receber dados vindo via POST.

 

Formulario 2

<?php
$material = $_POST['material'];
echo $material;
?>


<table id='form' class="table table-striped table-bordered table-hover" > 


    <tr>

        <Td>
            <iframe src="info1.php?material=<?= $material ?>" name="pesquisa" width="500" height="3550" scrolling="yes" frameborder="0" style="border:0px"></iframe>


        </td>

        <Td>
            <iframe src="info2.php?material=<?= $material ?>" name="pesquisa" width="500" height="3550" scrolling="yes" frameborder="0" style="border:0px"></iframe>


        </td>
    </tr>



</TABLE>

 

REPARE QUE NO INFO 1 e no INFO 2 eu troquei de POST por GET

 

INFO 1

<table id='form' class="table table-striped table-bordered table-hover" > 


    <!-- linhas -->
    <tr>
        <th width='25%'>
            MATERIAIS
        </th>


        <th width='25%'>
            N DE SERIE
        </th> 





        <?php
        $material = $_GET['material'];

        $sql = "SELECT *  FROM material WHERE 
	 material='$material' ";
        $res = mysql_query($sql);
        while ($linha = mysql_fetch_array($res)) {
            ?>
        <tr>
            <td>
                <font color='green'> <?php echo $linha['material']; ?>
            </td>

            <td>
                <font color='green'> <?php echo $linha['serie']; ?>
            </td>


        </tr>
        <?php
    }
    ?>

</table>

 

INFO 2

 

<table id='form' class="table table-striped table-bordered table-hover" > 
    <!-- linhas -->
    <tr>
        <th width='25%'>
           MATERIAIS
        </th>
		
		 
		<th width='25%'>
            N DE SERIE
        </th> 
	
		

	    
    
    <?php

  $material=$_GET['material']; 

    $sql = "SELECT *  FROM vendas WHERE 
	 material='$material' AND status='VENDIDO' ";
   $res = mysql_query($sql); 
    while($linha = mysql_fetch_array($res)){ 
    ?>
    <tr>
      
		
		<td>
           <font color='green'> <?php echo $linha['material'];?>
        </td>
		
		<td>
           <font color='green'> <?php echo $linha['serie'];?>
        </td>

    </tr>
    <?php
    }
    ?>

</table>

 

Compartilhar este post


Link para o post
Compartilhar em outros sites

Obgd Chagas...

 

a pane que eu tinha era nessa parte aki:

<iframe src="adm.php?pag=info1?material=<?php echo $material;?>"

 

eu ja tinha uma página dentro de outra(adm.php com o relatorio2.php),e qdo eu usei mais o  iframe (info1.php e info2.php)... acabou n funcionando como eu qria

(as informações não chegavam na info1.php e na info2.php)

 

solucao foi fazer essa aki mesmo( adcionei algumas coisas que tinham na adm.php para o relatorio2.php) e utilizei:

<iframe src="info1.php?material=<?php echo $material;?>"

visto que o sinal de "?" direcionava a página para uma outra página....

 

rs...

 

 

enfim

<iframe src="info1.php?material=<?php echo $material;?>"

funcionou...

Compartilhar este post


Link para o post
Compartilhar em outros sites

  • Conteúdo Similar

    • Por violin101
      Caros amigos do grupo, saudações e um feliz 2025.
       
      Estou com uma pequena dúvida referente a Teclas de Atalho.

      Quando o Caps Lock está ativado o Comando da Tecla de Atalho não funciona.
      ou seja:
      se estiver para letra minúscula ====> funciona
      se estiver para letra maiúscula ====> não funciona
       
      Como consigo evitar essa falha, tanto para Letra Maiúscula quanto Minúscula ?

      o Código está assim:
      document.addEventListener( 'keydown', evt => { if (!evt.ctrlKey || evt.key !== 'r' ) return;// Não é Ctrl+r, portanto interrompemos o script evt.preventDefault(); });  
      Grato,
       
      Cesar
    • Por ILR master
      Fala galera, tudo certo?
       
      Seguinte: No servidor A estou tentando fazer uma consulta com o servidor B, mas está dando erro.
      Estou usando o mesmo código de conexão do servidor B que funciona perfeitamente, mas no servidor A, dá erro.
      Segue código:
       
      $host = 'servidor B';
      $user = 'user';
      $pass = '********';
      $db   = 'banco';
       
      // conexão e seleção do banco de dados
      $conexao = mysqlI_connect($host, $user, $pass, $db);
      mysqlI_set_charset($conexao,"utf8");
      //print "Conexão rodando e OK!"; 
      //mysqlI_close($conexao);
       
      Alguém pode me ajudar?
    • Por violin101
      Caros amigos, saudações.

      Estou com uma dúvida, referente cálculo de valores em tempo real.

      Tenho uma rotina, que faz o cálculo, o problema é mostrar o resultado.

      Quero mostrar o RESULTADO assim: 0,00  ou  0.00

      Abaixo posto o código.
      jQuery('input').on('keyup',function(){ //Remover ponto e trocar a virgula por ponto var m = document.getElementById("pgRest").value; while (m.indexOf(".") >= 0) { m = m.replace(".", ""); } m = m.replace(",","."); //Remover ponto e trocar a virgula por ponto var j = document.getElementById("pgDsct").value; while (j.indexOf(".") >= 0) { j = j.replace(".", ""); } j = j.replace(",","."); m = parseFloat(jQuery('#pgRest').val() != '' ? jQuery('#pgRest').val() : 0); j = parseFloat(jQuery('#pgDsct').val() != '' ? jQuery('#pgDsct').val() : 0); //Mostra o Resultado em Tempo Real jQuery('#pgTroco').val(m - j); <<=== aqui estou errando })  
       
      Grato,
       
      Cesar
       
       
    • Por violin101
      Caro amigos, saudações.

      Tenho uma tabela escrita em JS que funciona corretamente.
       
      Minha dúvida:
      - como devo fazer para quando a Tabela HTML estiver vazia, exibir o LOGO da Empresa ?

      Abaixo posto o script:
      document.addEventListener( 'keydown', evt => { if (!evt.ctrlKey || evt.key !== 'i' ) return;// Não é Ctrl+A, portanto interrompemos o script evt.preventDefault(); //Chama a Função Calcular Qtde X Valor Venda calcvda(); var idProdutos = document.getElementById("idProdutos").value; var descricao = document.getElementById("descricao").value; var prd_unid = document.getElementById("prd_unid").value; var estoque_atual = document.getElementById("estoque_atual").value; var qtde = document.getElementById("qtde").value; var vlrunit = document.getElementById("vlrunit").value; var vlrtotals = document.getElementById("vlrtotal").value; var vlrtotal = vlrtotals.toLocaleString('pt-br', {minimumFractionDigits: 2}); if(validarConsumo(estoque_atual)){ //Chama a Modal com Alerta. $("#modal_qtdemaior").modal(); } else { if(qtde == "" || vlrunit == "" || vlrtotal == ""){ //Chama a Modal com Alerta. $("#modal_quantidade").modal(); } else { //Monta a Tabela com os Itens html = "<tr style='font-size:13px;'>"; html += "<td width='10%' height='10' style='text-align:center;'>"+ "<input type='hidden' name='id_prds[]' value='"+idProdutos+"'>"+idProdutos+"</td>"; html += "<td width='47%' height='10'>"+ "<input type='hidden' name='descricao[]' value='"+descricao+"'>"+descricao+ "<input type='hidden' name='esp[]' value='"+prd_unid+"'> - ESP:"+prd_unid+ "<input type='hidden' name='estoq[]' value='"+estoque_atual+"'></td>"; html += "<td width='10%' height='10' style='text-align:center;'>"+ "<input type='hidden' name='qtde[]' value='"+qtde+"'>"+qtde+"</td>"; html += "<td width='12%' height='10' style='text-align:right;'>"+ "<input type='hidden' name='vlrunit[]' value='"+vlrunit+"'>"+vlrunit+"</td>"; html += "<td width='14%' height='10' style='text-align:right;'>"+ "<input type='hidden' name='vlrtotal[]' value='"+vlrtotal+"'>"+vlrtotal+"</td>"; html += "<td width='12%' height='10' style='text-align:center;'>"+ "<button type='button' class='btn btn-uvas btn-remove-produto' style='margin-right:1%; padding:1px 3px; font-size:12px;' title='Remover Item da Lista'>"+ "<span class='fa fa-minus' style='font-size:12px;'></span></button></td>"; html += "</tr>"; $("#tbventas tbody").append(html); //Função para Somar os Itens do Lançamento somar(); $("#idProdutos").val(null); $("#descricao").val(null); $("#prd_unid").val(null); $("#qtde").val(null); $("#vlrunit").val(null); $("#vlrtotal").val(null); $("#idProdutos").focus(); //Se INCLUIR NOVO produto - Limpa a Forma de Pagamento $("#pgSoma").val(null); $("#pgRest").val(null); $("#pgDsct").val(null); $("#pgTroco").val(null); $("#tbpagar tbody").empty(); }//Fim do IF-qtde }//Fim do Validar Consumo });//Fim da Função btn-agregar  
      Grato,

      Cesar
       
    • Por violin101
      Caros amigos, saudações.
       
      Por favor, poderiam me ajudar.

      Estou com a seguinte dúvida:
      --> como faço para para implementar o input código do produto, para quando o usuário digitar o ID o sistema espera de 1s a 2s, sem ter que pressionar a tecla ENTER.

      exemplo:
      código   ----   descrição
           1       -----   produto_A
       
      Grato,
       
      Cesar
×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.