Menú

Mostrar Mensajes

Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.

Mostrar Mensajes Menú

Temas - Jarcx9

#1
PHP / No me muestra resultados Paginador PHP,MYSQL
25 Noviembre 2014, 16:08 PM
Estoy implementando este sencillo  paginador, me funciono bn pero cuando trate de hacerlo con PDO no me muestra los valores pero si muestra cuantos resultados se trajeron, estoy probando pero no me funciona, espero me puedan colaborar

Gracias :cool:

Código (php) [Seleccionar]

<html>
<head>
<title>ShotDev.Com Tutorial</title>
</head>
<body>
<?php
$db_username 
"";
$db_password "";
$db "oci:dbname=";
//$conn = new PDO($db,$db_username,$db_password);

try{
    
$conn = new PDO($db,$db_username,$db_password);
    echo 
"conectado correctamente";
}catch(
PDOException $e){
    echo (
$e->getMessage());
    echo 
"<br>Error Conection";
}
    
$st=$conn->prepare("SELECT PD_ID, PD_CANTIDAD, PRODUCTOS_PRO_ID, DEVOLUCION_MM_DMM_ID FROM PRODUCTO_DEVOLUCION ORDER BY PD_ID ASC");
    
$st->execute( ); 
    
$Result=$st->fetchAll($Result); 

     foreach (
$Result as $Result1) :
       
$a=$Result1['PD_ID'];          
     endforeach; 

    
$Num_Rows=$Result;

    
$Num_Rows=count($Num_Rows);




$Per_Page 2;   // Per Page

$Page $_GET["Page"];
if(!
$_GET["Page"])
{
$Page=1;
}

$Prev_Page $Page-1;
$Next_Page $Page+1;

$Page_Start = (($Per_Page*$Page)-$Per_Page);
if(
$Num_Rows<=$Per_Page)
{
$Num_Pages =1;
}
else if((
$Num_Rows $Per_Page)==0)
{
$Num_Pages =($Num_Rows/$Per_Page) ;
}
else
{
$Num_Pages =($Num_Rows/$Per_Page)+1;
$Num_Pages = (int)$Num_Pages;
}
$Page_End $Per_Page $Page;
if (
$Page_End $Num_Rows)
{
$Page_End $Num_Rows;
}

?>

<table width="600" border="1">
 <tr>
   <th width="91"> <div align="center">CustomerID </div></th>
   <th width="98"> <div align="center">Name </div></th>
   <th width="198"> <div align="center">Email </div></th>
   <th width="97"> <div align="center">CountryCode </div></th>

 </tr>
<?php
for($i=$Page_Start;$i<$Page_End;$i++)
{
?>

 <tr>
   <td><div align="center"><?php echo $Result["PD_ID"][$i];?></div></td>
   <td><?php echo $Result["PD_CANTIDAD"][$i];?></td>
   <td><?php echo $Result["PRODUCTOS_PRO_ID"][$i];?></td>
   <td><div align="center"><?php echo $Result["DEVOLUCION_MM_DMM_ID"][$i];?></div></td>
   
 </tr>
<?php
}
?>

</table>

<br>
Total <?php $Num_Rows;?> Record : <?php $Num_Pages;?> Page :
<?php
if($Prev_Page)
{
echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page'><< Back</a> ";
}

for(
$i=1$i<=$Num_Pages$i++){
if($i != $Page)
{
echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i'>$i</a> ]";
}
else
{
echo "<b> $i </b>";
}
}
if(
$Page!=$Num_Pages)
{
echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page'>Next>></a> ";
}
//oci_close($objConnect);
?>

</body>
</html>




De esta forma si me funciona pero como dije quisiera hacerlo en PDO

Código (php) [Seleccionar]

error_reporting(0);

    $dbhost = "localhost:1521/xe";
  //  static public $mvc_bd_nombre   = "prueba_ccl";
    $dbuser  = "HR";
    $dbpass    = "1234";
   
$objConnect = oci_connect($dbuser,$dbpass,$dbhost);
$strSQL = "SELECT PD_ID, PD_CANTIDAD, PRODUCTOS_PRO_ID, DEVOLUCION_MM_DMM_ID FROM PRODUCTO_DEVOLUCION ORDER BY PD_ID ASC";
$objParse = oci_parse ($objConnect, $strSQL);
oci_execute ($objParse,OCI_DEFAULT);

$Num_Rows = oci_fetch_all($objParse, $Result);

#2
Desarrollo Web / Enviar formulario sin recargar
24 Noviembre 2014, 23:15 PM
Buenas parceros,

Estoy haciendo un pequeño codigo donde incrusto un input en una imagen y envio este formulario via jquery,ajax. El codigo esta bien y envia lo que necesito y todo pero quiero que me muestre un mensaje cuando le de al submit, algo asi como se envio correctametne.

Estoy probando pero no he podido solucionarlo, le agradeceria mucho su colaboracion

Código (php) [Seleccionar]
<html>
<head>
<script language="javascript" src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script language="javascript">
$(document).ready(function() {
   $().ajaxStart(function() {
       $('#loading').show();
       $('#result').hide();
   }).ajaxStop(function() {
       $('#loading').hide();
       $('#result').fadeIn('slow');
   });
   $('#form, #fat, #mc-embedded-subscribe-form').submit(function() {
       $.ajax({
           type: 'POST',
           url: $(this).attr('action'),
           data: $(this).serialize(),
           success: function(data) {
               $('#result').html(data);

           }
       })
       
       return false;
   });
})  
</script>


<link href="//cdn-images.mailchimp.com/embedcode/classic-081711.css" rel="stylesheet" type="text/css">

<style type="text/css">
.form-control {
 width: 34%;
 height: 30px;
 padding: 10px 15px;
 font-size: 15px;
 line-height: 1.42857143;
 color: #2c3e50;
 background-color: #ffffff;
 background-image: none;
 border: 1px solid #dce4ec;
 border-radius: 4px;
 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
 -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
 -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
 transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
</style>
</head>
<body>


<div id="mc_embed_signup">
<form action="//ribot-barcelona.us5.list-manage.com/subscribe/post?u=d2c4a68aadfd8d6061877b0b2&amp;id=809315d24f" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" >

<table  align=center cellpadding=1 cellspacing=2 background="newsletter web_Ribot.jpg" height="415" width="754">

<tr>
<td><br>&nbsp;</td>
</tr>

<tr>
<td><br>&nbsp;</td>
</tr>

<tr>
<td></td>
<td align="right">
<font color="white"><b>E-Mail</b></font> &nbsp;&nbsp;<input type="text" value="" name="EMAIL" id="mce-EMAIL" required class="form-control" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br><br>
 
  <input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button" >&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;


   <div id="result" ></div>


</td>
</tr>

</table>
</form>
</div>



</body>
</html>
#3
PHP / Como implementar función Ajax - Autocomplete
29 Septiembre 2014, 23:21 PM
Buenas parcero

Estoy realziando un proyecto en MCV + ORACLE y estoy en un dilema y no puedo hacer lo mas sencillo creo...

La idea es la siguiente, traigo varios valores de una consulta dinamica  id, producto, cantidad, etc.

En la columna productos deseo escribir el id del productos y este me debe mostrar al frente el nombre por medio de una funcion ajax.  funciona para la primera columna pero de hay para adelante si escribo en el siguiente ya no funciona pues como todos los input que se generan dinamicamente tienen el mismo name e id pues solo me va a mostrar en el primero.

Pues ya hize alguna pruebas secillas para cambiar el nombre e id del input en +1 pero quiero que cuando llege al ajax este haga lo mismo

Espero haber explicado bn

Aqui les dejo una captura






CONTROLADOR
Código (php) [Seleccionar]
public function listarProductosAjax()
    {
        $aux = $_POST['q'];
       // $aux1 = $_GET['id'];
       

        $m = new Model(Config::$mvc_bd_usuario,
                    Config::$mvc_bd_clave, Config::$mvc_bd_hostname);

        $productoajax = $m->verProductoAjax($aux);

        $paramsVerAjax = $productoajax;

       

       return $paramsVerAjax;
    }



MODELO
Código (php) [Seleccionar]

    public function verProductoAjax($id)
       {
        $id = htmlspecialchars($id);
        $id1=1;

        $sql="select PRO_NOMBRE from PRODUCTOS where PRO_ID LIKE '".$id."%'";


        $result = oci_parse($this->conexion,$sql);
        oci_execute($result, OCI_DEFAULT);
        //$devolucion = array();

        $row = oci_fetch_array($result);
       echo $row['PRO_NOMBRE'];
       // $row = $result;
       // return $row;
       }


VISTAS
Código (php) [Seleccionar]

<div class="table-responsive">
<table align="center" class="table table-condensed table-hover">
    <tr>
        <th>#</th>
        <th>Producto</th>
        <th>...</th>
        <th>Cantidad</th>
        <th>Reserva</th>        
        <th>Producto</th>
        <th>Cantidad</th>
       
        <th>Tipo Reserva</th>
       

    </tr>

<?php 


?>

 <?php foreach ($paramsPD['productoD'] as $paramsPD1) :?>
<?php 


$nameb
="bus";
$sum++;
//$sumando=$sum+1;
$bus=$nameb.$sum;
echo 
$bus;
?>


    <tr>
        <td><?php echo $paramsPD1['PD_ID'?></td>
        <td>        

           
[B]          Buscar <input type="text" id="<?php echo $bus ?>"
name="<?php echo $bus ?>" onkeyup="loadXMLDoc()" required /></td>

<td><div id="myDiv"> </div></td>
[/B]
     
        <td><input type="number" name="cantidad" min="1" required placeholder="Cantidad de Productos" class="form-control" id="" size="" value="<?php echo $paramsPD1['PD_CANTIDAD']?>"/></td>
         


.....

       
    </tr>
    <?php endforeach; ?>




AJAX
Código (javascript) [Seleccionar]

function loadXMLDoc()
{
var xmlhttp;

var n=document.getElementById('bus1').value;

if(n==''){
document.getElementById("myDiv").innerHTML="";
return;
}

if (window.XMLHttpRequest)
 {// code for IE7+, Firefox, Chrome, Opera, Safari
 xmlhttp=new XMLHttpRequest();
 }
else
 {// code for IE6, IE5
 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
 }
xmlhttp.onreadystatechange=function()
 {
 if (xmlhttp.readyState==4 && xmlhttp.status==200)
   {
   document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
   }else{ document.getElementById("myDiv").innerHTML='<img src="load.gif" width="50" height="50" />'; }
 }
xmlhttp.open("POST","index.php?ctl=buscarajax",true);
xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
xmlhttp.send("q="+n);
}


[Mod]: Temas de PHP van al subforo de PHP.