Comunidad de diseño web y desarrollo en internet online

Informacion Div's ocultos con informacion extraida de la DB

Citar            
MensajeEscrito el 27 Jul 2019 02:44 pm
Hola, si es posible alguien me podria colaborar e indicarme cual o cuales podrian ser los errores.

//Inicia la Conexion a la DB

Código PHP :

<?php
include("conec.php");
conecta();
//Busqueda en tabla segun criterio
$sql = "SELECT * FROM prueba WHERE funci_asig = 'YM' order by registro ASC";        
    $result = mysql_query($sql); 
?>

//Scrip oculta muestra div's

Código :

<script type="text/javascript">  
document.write('<style type="text/css">div.cp_oculta{display: none;}</style>');   
function MostrarOcultar(capa,enlace)  
{  
    if (document.getElementById)  
    {  
        var aux = document.getElementById(capa).style;  
        aux.display = aux.display? "":"block";  
    }  
}         
    </script> 

//Div muestra informacion extraida segun criterio

Código :

<div align='center'>   
     <table border='1' cellpadding='0' cellspacing='0' width='600' bgcolor='#F6F6F6' bordercolor='#FFFFFF'>  
       <tr>    
        <td width='300' style='font-weight: bold'>NOMBRE</td>    
        <td width='300' style='font-weight: bold'>radicado</td>   
      </tr>   
      <?php   
         while ($registro = mysql_fetch_array($result)){ 
      echo"<tr style='background-color:#FFFFFF;'>";                                
      echo "<td width='200'>".$registro["funci_asig"]."</td>";
      echo "<td width='200'><a href=javascript:MostrarOcultar('texto') ?ref=".$registro['rad_nurf2']." >".$registro['rad_nurf2']."</a></td>";   
      echo"</tr>";
      
      }  
      ?>  
      </table>  
   </div>

//Div que muestra y se oculta debe contener ampliada la informacion segun criterio

Código :

<div class="cp_oculta" id="texto">        
         <br><br>
         <legend><b style="color: black;">Solicitudes</b></legend>
            <div class="table-responsive">
               <table class='table table-striped table-bordered' id='user_data'>
                <thead>  
                  <th style='aling center'>Asignación</th>
                  <th style='aling center'>Número</th>
                  <th style='aling center'>Radicado Nurf2</th>
                  <th style='aling center'>Gestion</th>
                  <th style='aling center'>Peticionario</th>
                  <th style='aling center'>Documento</th>
                  <th style='aling center'>cargo</th>
                  <th style='aling center'>teléfono</th>
                  <th style='aling center'>dirección</th>
                  <th style='aling center'>Correo</th>
               </thead>  
                  <?php  
   //pilas aca.. no se muestra el resultado de la DB por numero de radicado
//aca lio no obtiene la info que deberia traer para realizar la busqueda ampliada segun se de click sobre el argumento
                  $id = $_GET['ref'];
                     $query = "select * from prueba where rad_nurf2 = '$id'"; 
                     $result = mysql_query($query); 

                  while ($registro = mysql_fetch_array($result)){ 

                  echo " 
                       <td width='150'>$id</td>   
                       <td width='150'>".$registro['fecha_ela']."</td>   
                       <td width='150'>".$registro['registro']."</td>   
                       <td width='150'>".$registro['gestion']."</td>  
                       <td width='150'>".$registro['nombres']."</td>   
                       <td width='150'>".$registro['documento']."</td>   
                       <td width='150'>".$registro['cargo']."</td> 
                       <td width='150'>".$registro['telefono']."</td>   
                       <td width='150'>".$registro['direccion']."</td>   
                       <td width='150'>".$registro['email']."</td>      
                  "; 
                  } 
                  ?>   
               </table>   
            </div>      
      </div>

//Cierra conexion

Código PHP :

<?php
mysql_close($conexion); 
?>

Por nitramara

30 de clabLevel



Genero:Masculino  

chrome
Citar            
MensajeEscrito el 27 Jul 2019 02:49 pm

nitramara escribió:

Hola, si es posible alguien me podria colaborar e indicarme cual o cuales podrian ser los errores.

//Inicia la Conexion a la DB

Código PHP :

<?php
include("conec.php");
conecta();
//Busqueda en tabla segun criterio
$sql = "SELECT * FROM prueba WHERE funci_asig = 'YM' order by registro ASC";        
    $result = mysql_query($sql); 
?>

//Scrip oculta muestra div's

Código :

<script type="text/javascript">  
document.write('<style type="text/css">div.cp_oculta{display: none;}</style>');   
function MostrarOcultar(capa,enlace)  
{  
    if (document.getElementById)  
    {  
        var aux = document.getElementById(capa).style;  
        aux.display = aux.display? "":"block";  
    }  
}         
    </script> 

//Div muestra informacion extraida segun criterio

Código :

<div align='center'>   
     <table border='1' cellpadding='0' cellspacing='0' width='600' bgcolor='#F6F6F6' bordercolor='#FFFFFF'>  
       <tr>    
        <td width='300' style='font-weight: bold'>NOMBRE</td>    
        <td width='300' style='font-weight: bold'>radicado</td>   
      </tr>   
      <?php   
         while ($registro = mysql_fetch_array($result)){ 
      echo"<tr style='background-color:#FFFFFF;'>";                                
      echo "<td width='200'>".$registro["funci_asig"]."</td>";
      echo "<td width='200'><a href=javascript:MostrarOcultar('texto') ?ref=".$registro['rad_nurf2']." >".$registro['rad_nurf2']."</a></td>";   
      echo"</tr>";
      
      }  
      ?>  
      </table>  
   </div>

//Div que muestra y se oculta debe contener ampliada la informacion segun criterio

Código :

<div class="cp_oculta" id="texto">        
         <br><br>
         <legend><b style="color: black;">Solicitudes</b></legend>
            <div class="table-responsive">
               <table class='table table-striped table-bordered' id='user_data'>
                <thead>  
                  <th style='aling center'>Asignación</th>
                  <th style='aling center'>Número</th>
                  <th style='aling center'>Radicado Nurf2</th>
                  <th style='aling center'>Gestion</th>
                  <th style='aling center'>Peticionario</th>
                  <th style='aling center'>Documento</th>
                  <th style='aling center'>cargo</th>
                  <th style='aling center'>teléfono</th>
                  <th style='aling center'>dirección</th>
                  <th style='aling center'>Correo</th>
               </thead>  
                  <?php  
   //pilas aca.. no se muestra el resultado de la DB por numero de radicado
//aca lio no obtiene la info que deberia traer para realizar la busqueda ampliada segun se de click sobre el argumento
                  $id = $_GET['ref'];
                     $query = "select * from prueba where rad_nurf2 = '$id'"; 
                     $result = mysql_query($query); 

                  while ($registro = mysql_fetch_array($result)){ 

                  echo " 
                       <td width='150'>$id</td>   
                       <td width='150'>".$registro['fecha_ela']."</td>   
                       <td width='150'>".$registro['registro']."</td>   
                       <td width='150'>".$registro['gestion']."</td>  
                       <td width='150'>".$registro['nombres']."</td>   
                       <td width='150'>".$registro['documento']."</td>   
                       <td width='150'>".$registro['cargo']."</td> 
                       <td width='150'>".$registro['telefono']."</td>   
                       <td width='150'>".$registro['direccion']."</td>   
                       <td width='150'>".$registro['email']."</td>      
                  "; 
                  } 
                  ?>   
               </table>   
            </div>      
      </div>

//Cierra conexion

Código PHP :

<?php
mysql_close($conexion); 
?>

Por nitramara

30 de clabLevel



Genero:Masculino  

chrome
Citar            
MensajeEscrito el 27 Jul 2019 07:03 pm
Cuando pones la pagina en el servidor y la corres, el servidor imprime los errores, empieza por alli. Si te da algun error, postealo, si observas un comportamiento defectuoso, cuentanos cual es.

Jorge

Por solisarg

BOFH

13669 de clabLevel

4 tutoriales
5 articulos

Genero:Masculino   Bastard Operators From Hell Premio_Secretos

Argentina

chrome
Citar            
MensajeEscrito el 28 Jul 2019 07:03 pm
Gracias.. adjunto información del error

( ! ) Notice: Undefined index: ref in C:\wamp\www\Sub_Secre\usuario.php on line 151
Call Stack
# Time Memory Function Location
1 0.0026 265424 {main}( ) ..\usuario.php:0

Por nitramara

30 de clabLevel



Genero:Masculino  

chrome
Citar            
MensajeEscrito el 30 Jul 2019 10:26 pm
un Notice no es un error, simplemente significa que no se ha seteado algun valor. Si cambias el nivel de reporting ya no lo tienes (aunque a veces puede ser necesario, eso lo debes determinar tu)

error_reporting(E_ERROR | E_WARNING | E_PARSE);

Jorge

Por solisarg

BOFH

13669 de clabLevel

4 tutoriales
5 articulos

Genero:Masculino   Bastard Operators From Hell Premio_Secretos

Argentina

chrome
Citar            
MensajeEscrito el 20 Ago 2019 09:51 am
Extraordinario Jorge, gracias por la respuesta, estuve con problemas de Warnings en mi web y ya lo he podido resolver, era un tema de definir mejor el error_reporting de PHP.

Igualmente profundice un poco más y veo que es bastante potente la función esta, aquí la doc de PHP https://www.php.net/manual/es/function.error-reporting.php

Por cecilia99

2 de clabLevel



 

firefox

 

Cristalab BabyBlue v4 + V4 © 2011 Cristalab
Powered by ClabEngines v4, HTML5, love and ponies.