30/10/2012, 07:18
|
| | Fecha de Ingreso: agosto-2012 Ubicación: Asunción
Mensajes: 6
Antigüedad: 12 años, 3 meses Puntos: 0 | |
Respuesta: Tutorial JQuery DataTables Cita:
Iniciado por tinthenet Hola amigos, estoy en un proyecto PHP y Postgresql y lo hice funcionar de la siguiente manera:
yo bajé el DataTables version 1.7.5 y puse la carpeta en el proyecto con el nombre DataTables-1.7.5.
Primero les dejo el archivo que hace la conexión a la base de datos, ustedes cambien por sus datos: db_connect.php Código PHP: <?php
define ('DB_HOST','192.168.0.100'); // ip PC que tiene base de datos
define ('DB_USER','usuario'); // usuario base de datos
define ('DB_PASS','clave'); // contraseña base de datos
define ('DB_NAME','base_1'); // nombre base de datos
define ('DB_PORT','5432'); // puerto base de datos
//$conn = pg_connect("user=".DB_USER." port=".DB_PORT." password=".DB_PASS." dbname=".DB_NAME." host=".DB_HOST);
function execute_query ($sql){
$conn = pg_connect("user=".DB_USER." port=".DB_PORT." password=".DB_PASS." dbname=".DB_NAME." host=".DB_HOST);
if (!$conn) {
echo 'Error while connecting to the database';
}
$result = pg_query($conn,$sql);
if (!$result) {
echo "No se puede ejecutar el query: ".$sql;
}
else {
//nada, todo bien
}
return $result;
}
?>
Después cree un archivo, ponganle el nombre que quieran, con lo siguiente (modificar SQL y el PHP): Código PHP:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title> Listado x Obra </title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-2" />
<link rel="shortcut icon" type="image/ico" href="http://www.sprymedia.co.uk/media/images/favicon.ico">
<style type="text/css" title="currentStyle">
@import "DataTables-1.7.5/media/css/demo_page.css";
@import "DataTables-1.7.5/media/css/demo_table_jui.css";
@import "DataTables-1.7.5/examples/examples_support/themes/smoothness/jquery-ui-1.8.4.custom.css";
@import "DataTables-1.7.5/TableTools-2.0.0/media/css/TableTools.css";
@import "DataTables-1.7.5/extras/ColVis/media/css/ColVis.css";
</style>
<script type="text/javascript" charset="utf-8" src="DataTables-1.7.5/media/js/jquery.js"></script>
<script type="text/javascript" charset="utf-8" src="DataTables-1.7.5/media/js/jquery.dataTables.js"></script>
<script type="text/javascript" charset="utf-8" src="DataTables-1.7.5/TableTools-2.0.0/js/ZeroClipboard.js"></script>
<script type="text/javascript" charset="utf-8" src="DataTables-1.7.5/TableTools-2.0.0/js/TableTools.js"></script>
<script type="text/javascript" charset="utf-8" src="DataTables-1.7.5/extras/ColVis/media/js/ColVis.js"></script>
<script type="text/javascript" charset="utf-8">
var asInitVals = new Array();
$(document).ready(function() {
$('#example').dataTable({
"bJQueryUI": true,
"sPaginationType": "full_numbers",
"sDom": 'T C lfrtip',
"oTableTools": {
"sSwfPath": "/TableTools-2.0.0/media/swfcopy_cvs_xls_pdf.swf",
"aButtons": [
"xls",
"pdf",
{
"sExtends": "print",
"sButtonText": "Imprimir",
"sInfo": "<br><center><h1>PRESIONAR ESCAPE AL TERMINAR</h1></center>",
"sMessage": "<center><h2><b>TITULO!</b></h2></center>",
"sTitle": "Listado x Obra Social",
}
],
},
"fnInitComplete": function () {
var
that = this,
nTrs = this.fnGetNodes();
$('td', nTrs).click( function () {
that.fnFilter( this.innerHTML );
} );
},
"oLanguage": {
"oPaginate": {
"sPrevious": "Anterior",
"sNext": "Siguiente",
"sLast": "Ultima",
"sFirst": "Primera"
},
"sLengthMenu": 'Mostrar <select>'+
'<option value="10">10</option>'+
'<option value="20">20</option>'+
'<option value="30">30</option>'+
'<option value="40">40</option>'+
'<option value="50">50</option>'+
'<option value="-1">Todos</option>'+
'</select> registros',
"sInfo": "Mostrando del _START_ a _END_ (Total: _TOTAL_ resultados)",
"sInfoFiltered": " - filtrados de _MAX_ registros",
"sInfoEmpty": "No hay resultados de búsqueda",
"sZeroRecords": "No hay registros a mostrar",
"sProcessing": "Espere, por favor...",
"sSearch": "Buscar:",
}
});
$("tfoot input").keyup( function () {
/* Filter on the column (the index) of this element */
oTable.fnFilter( this.value, $("tfoot input").index(this) );
} );
/*
* Support functions to provide a little bit of 'user friendlyness' to the textboxes in
* the footer
*/
$("tfoot input").each( function (i) {
asInitVals[i] = this.value;
} );
$("tfoot input").focus( function () {
if ( this.className == "search_init" )
{
this.className = "";
this.value = "";
}
} );
$("tfoot input").blur( function (i) {
if ( this.value == "" )
{
this.className = "search_init";
this.value = asInitVals[$("tfoot input").index(this)];
}
} );
}); // Termina document.ready
</script>
<style>
.data_table {
font-family: helvetica;
font-size: 1px;
}
#top_of_page {
position: absolute;
}
#main_table_area {
position: absolute;
top: 20px;
height: 540px;
width: 800px;
overflow: auto;
}
</style>
</head>
<?php
// Arriba está el código de lo que va en el archivo include a continuación:
include 'db_connect.php';
$sql = "SELECT * FROM tabla";
$result = execute_query($sql);
// Pasa la fecha a español llamar FechaEsp($row['campo']);
function FechaESP ($fecha) {
if ($fecha != '') {
$data=explode("-",$fecha);
$retfecha = substr($data[2],0,2).'/'.$data[1].'/'.$data[0];
return $retfecha;
} else {
$retfecha = '';
}
}
?>
<body id="dt_example">
<div id="demo">
<font size=1>
<div id="main_table_area">
<table cellpadding="0" cellspacing="0" border="0" class="display" id="example" class="data_table">
<thead>
<tr>
<th width="auto">Titulo 1</th>
<th width="auto">Titulo 2</th>
<th width="auto">Titulo 3</th>
<th width="auto">Titulo 4</th>
<th width="auto">Titulo 5</th>
<th width="auto">Titulo 6</th>
<th width="auto">Titulo 7</th>
</tr>
</thead>
<tbody>
<?php
$i = 0;
$total = pg_num_rows($result);
while ($row = pg_fetch_array($result)) {
$i++;
echo "<tr class='gradeA'>
<td width='auto'>".$row['campo1']."</td>
<td width='auto' class='center'>".$row['campo2']."</td>
<td width='auto'>".$row['campo3']."</td>
<td width='auto'>".$row['campo4']."</td>
<td width='auto'>".$row['campo5']."</td>
<td width='auto'>".$row['campo6']."</td>
<td width='auto'>".$row['campo7']."</td>
</tr>";
}
echo 'Total: ' . $total;
?>
</tbody>
</table>
</div>
</font>
</div>
<div class="spacer"></div>
</div>
</body>
</html>
Espero les sirva, cualquier duda consulten.
Saludos. Tengo un error en las lineas
$total = pg_num_rows($result);
while ($row = pg_fetch_array($result))
El error que me da es:
Warning: pg_num_rows(): supplied argument is not a valid PostgreSQL result resource in...
Warning: pg_fetch_array() expects parameter 1 to be resource, boolean given in...
Alguien podria ayudarme |