Buscar
Social
Ofertas laborales ES

Foro sobre Java EE > De Php a Asp

Quiero hacer una preesentacion en jsp de una select.
Pero quiero presentarla asi.
En cada Celda quiero un registro, que se vea en una tabla un total de x
registros (paguinacion incluida).

El codigo lo he encontrado en Php, pero no se como presentarlo en jsp

Pido ayuda por favor


//CODIGO DE PHP

<?PHP
$objConnect = mysql_connect("localhost","root","") or die(mysql_error());
$objDB = mysql_select_db("otaku");

$strSQL = "SELECT *FROM serie";

$objQuery = mysql_query($strSQL);
$Num_Rows = mysql_num_rows($objQuery);

$Per_Page = 8; // 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;
}

$strSQL .=" order by id_serie ASC LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);


echo"<table border=\"0\" width=\"50%\" align=\"center\" cellspacing=\"1\" cellpadding=\"1\"><tr>";
$intRows = 0;
while($objResult = mysql_fetch_array($objQuery))
{
echo "<td>";
$intRows++;
?>
<center>">


<span class="titulo"> <?=$objResult["Nombre"];?></span>


<span class="pequeño"><?=$objResult["Descripcion_p"];?></span>

</center>

<?php
echo"ELIMINAR

UPDATE
FICHA";?>
<?PHP
echo"</td>";
if(($intRows)%4==0)
{
echo"</tr>";
}
}
echo"</tr></table>";
?>

<span class="paguinas">Total
<?= $Num_Rows;?> Record : <?=$Num_Pages;?> Page :</span>

<?PHP
if($Prev_Page)
{
echo " << Back ";
}

for($i=1; $i<=$Num_Pages; $i++){
if($i != $Page)
{
echo "[ $i ]";
}
else
{
echo " $i ";
}
}
if($Page!=$Num_Pages)
{
echo " Next>> ";
}
?>

<?PHP
mysql_close($objConnect);
?>

INSERTAR NUEVO REGISTRO

Galerias
</p>

</html>

febrero 10, 2015 | Unregistered CommenterJorge Pallol