PHP Pagination

Hi, sorry to ask this question here but this is a trusty forum for me.
I'm looking for a PHP pagination script. All the ones i've found are seem very old.
I am looking for one where I can join tables as I cant find one of these either
Thanks

You don't need to concern yourself with table joins. Pagination is worked out by how many results are returned from the mysql query.
Have you looked at the tutorials on youtube for php page pagination?

Similar Messages

  • PHP Pagination Help

    I'm php newbie and I"m trying to create pagination for some DP results and I'm having some problems. I can view the pagination at the bottom of my DB results, however when I click on the numbers I remain on the same page.  I'm using this 7 step pagination script: http://www.phpeasystep.com/phptu/29.html and I think my problem may be within step 7, im confused on what to do for that step, but it could be something else. I don't deal with code that often so this new to me. So my question is how do I get this script to work?
    HERES MY CODE:
    <?php require_once('Connections/myconnectboi.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $currentPage = $_SERVER["PHP_SELF"];
    $maxRows_Recordset2 = 4;
    $pageNum_Recordset2 = 0;
    if (isset($_GET['pageNum_Recordset2'])) {
      $pageNum_Recordset2 = $_GET['pageNum_Recordset2'];
    $startRow_Recordset2 = $pageNum_Recordset2 * $maxRows_Recordset2;
    mysql_select_db($database_myconnectboi, $myconnectboi);
    $query_Recordset2 = "SELECT * FROM hiphop ORDER BY id DESC";
    $query_limit_Recordset2 = sprintf("%s LIMIT %d, %d", $query_Recordset2, $startRow_Recordset2, $maxRows_Recordset2);
    $Recordset2 = mysql_query($query_limit_Recordset2, $myconnectboi) or die(mysql_error());
    $row_Recordset2 = mysql_fetch_assoc($Recordset2);
    if (isset($_GET['totalRows_Recordset2'])) {
      $totalRows_Recordset2 = $_GET['totalRows_Recordset2'];
    } else {
      $all_Recordset2 = mysql_query($query_Recordset2);
      $totalRows_Recordset2 = mysql_num_rows($all_Recordset2);
    $totalPages_Recordset2 = ceil($totalRows_Recordset2/$maxRows_Recordset2)-1;
    $queryString_Recordset2 = "";
    if (!empty($_SERVER['QUERY_STRING'])) {
      $params = explode("&", $_SERVER['QUERY_STRING']);
      $newParams = array();
      foreach ($params as $param) {
        if (stristr($param, "pageNum_Recordset2") == false &&
            stristr($param, "totalRows_Recordset2") == false) {
          array_push($newParams, $param);
      if (count($newParams) != 0) {
        $queryString_Recordset2 = "&" . htmlentities(implode("&", $newParams));
    $queryString_Recordset2 = sprintf("&totalRows_Recordset2=%d%s", $totalRows_Recordset2, $queryString_Recordset2);
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <table cellspacing="0">
      <tr>
        <td width="300"></td>
        <td></td>
        <td width="14"></td>
        <td width="0"></td>
      </tr>
      <?php do { ?>
        <tr>
          <td height="32" colspan="2" bgcolor="#3399CC"><?php echo $row_Recordset2['description']; ?></td>
        </tr>
        <tr>
          <td><img src="<?php echo $row_Recordset2['image']; ?>" width="300" height="250" border="5" /></td>
          <td width="300" height="250" align="center" bgcolor="#FFFFFF"><?php echo $row_Recordset2['description']; ?></td>
        </tr>
        <?php } while ($row_Recordset2 = mysql_fetch_assoc($Recordset2)); ?>
    </table>
    <p>
      <?php
            Place code to connect to your DB here.
        include('Connections/myconnectboi.php');    // include your code to connect to DB.
        $tbl_name="hiphop";        //your table name
        // How many adjacent pages should be shown on each side?
        $adjacents = 3;
           First get total number of rows in data table.
           If you have a WHERE clause in your query, make sure you mirror it here.
        $query = "SELECT COUNT(*) as num FROM $tbl_name";
        $total_pages = mysql_fetch_array(mysql_query($query));
        $total_pages = $total_pages['num'];
        /* Setup vars for query. */
        $targetpage = "test.php";     //your file name  (the name of this file)
        $limit = 4;                                 //how many items to show per page
        $page = $_GET['page'];
        if($page)
            $start = ($page - 1) * $limit;             //first item to display on this page
        else
            $start = 0;                                //if no page var is given, set start to 0
        /* Get data. */
        $sql = "SELECT id FROM $tbl_name LIMIT $start, $limit";
        $result = mysql_query($sql);
        /* Setup page vars for display. */
        if ($page == 0) $page = 1;                    //if no page var is given, default to 1.
        $prev = $page - 1;                            //previous page is page - 1
        $next = $page + 1;                            //next page is page + 1
        $lastpage = ceil($total_pages/$limit);        //lastpage is = total pages / items per page, rounded up.
        $lpm1 = $lastpage - 1;                        //last page minus 1
            Now we apply our rules and draw the pagination object.
            We're actually saving the code to a variable in case we want to draw it more than once.
        $pagination = "";
        if($lastpage > 1)
            $pagination .= "<div class=\"pagination\">";
            //previous button
            if ($page > 1)
                $pagination.= "<a href=\"$targetpage?page=$prev\">« previous</a>";
            else
                $pagination.= "<span class=\"disabled\">« previous</span>";   
            //pages   
            if ($lastpage < 7 + ($adjacents * 2))    //not enough pages to bother breaking it up
                for ($counter = 1; $counter <= $lastpage; $counter++)
                    if ($counter == $page)
                        $pagination.= "<span class=\"current\">$counter</span>";
                    else
                        $pagination.= "<a href=\"$targetpage?page=$counter\">$counter</a>";                   
            elseif($lastpage > 5 + ($adjacents * 2))    //enough pages to hide some
                //close to beginning; only hide later pages
                if($page < 1 + ($adjacents * 2))       
                    for ($counter = 1; $counter < 4 + ($adjacents * 2); $counter++)
                        if ($counter == $page)
                            $pagination.= "<span class=\"current\">$counter</span>";
                        else
                            $pagination.= "<a href=\"$targetpage?page=$counter\">$counter</a>";                   
                    $pagination.= "...";
                    $pagination.= "<a href=\"$targetpage?page=$lpm1\">$lpm1</a>";
                    $pagination.= "<a href=\"$targetpage?page=$lastpage\">$lastpage</a>";       
                //in middle; hide some front and some back
                elseif($lastpage - ($adjacents * 2) > $page && $page > ($adjacents * 2))
                    $pagination.= "<a href=\"$targetpage?page=1\">1</a>";
                    $pagination.= "<a href=\"$targetpage?page=2\">2</a>";
                    $pagination.= "...";
                    for ($counter = $page - $adjacents; $counter <= $page + $adjacents; $counter++)
                        if ($counter == $page)
                            $pagination.= "<span class=\"current\">$counter</span>";
                        else
                            $pagination.= "<a href=\"$targetpage?page=$counter\">$counter</a>";                   
                    $pagination.= "...";
                    $pagination.= "<a href=\"$targetpage?page=$lpm1\">$lpm1</a>";
                    $pagination.= "<a href=\"$targetpage?page=$lastpage\">$lastpage</a>";       
                //close to end; only hide early pages
                else
                    $pagination.= "<a href=\"$targetpage?page=1\">1</a>";
                    $pagination.= "<a href=\"$targetpage?page=2\">2</a>";
                    $pagination.= "...";
                    for ($counter = $lastpage - (2 + ($adjacents * 2)); $counter <= $lastpage; $counter++)
                        if ($counter == $page)
                            $pagination.= "<span class=\"current\">$counter</span>";
                        else
                            $pagination.= "<a href=\"$targetpage?page=$counter\">$counter</a>";                   
            //next button
            if ($page < $counter - 1)
                $pagination.= "<a href=\"$targetpage?page=$next\">next »</a>";
            else
                $pagination.= "<span class=\"disabled\">next »</span>";
            $pagination.= "</div>\n";       
    ?>
      <?php
            while($row = mysql_fetch_array($result))
            // Show if not last page
        ?>
      <?=$pagination?> 
    </p>
    <p> </p>
    <p> </p>
    <p> </p>
    </body>
    </html>
    <?php
    mysql_free_result($Recordset2);
    ?>

    I'm php newbie and I"m trying to create pagination for some DP results and I'm having some problems. I can view the pagination at the bottom of my DB results, however when I click on the numbers I remain on the same page.  I'm using this 7 step pagination script: http://www.phpeasystep.com/phptu/29.html and I think my problem may be within step 7, im confused on what to do for that step, but it could be something else. I don't deal with code that often so this new to me. So my question is how do I get this script to work?
    HERES MY CODE:
    <?php require_once('Connections/myconnectboi.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $currentPage = $_SERVER["PHP_SELF"];
    $maxRows_Recordset2 = 4;
    $pageNum_Recordset2 = 0;
    if (isset($_GET['pageNum_Recordset2'])) {
      $pageNum_Recordset2 = $_GET['pageNum_Recordset2'];
    $startRow_Recordset2 = $pageNum_Recordset2 * $maxRows_Recordset2;
    mysql_select_db($database_myconnectboi, $myconnectboi);
    $query_Recordset2 = "SELECT * FROM hiphop ORDER BY id DESC";
    $query_limit_Recordset2 = sprintf("%s LIMIT %d, %d", $query_Recordset2, $startRow_Recordset2, $maxRows_Recordset2);
    $Recordset2 = mysql_query($query_limit_Recordset2, $myconnectboi) or die(mysql_error());
    $row_Recordset2 = mysql_fetch_assoc($Recordset2);
    if (isset($_GET['totalRows_Recordset2'])) {
      $totalRows_Recordset2 = $_GET['totalRows_Recordset2'];
    } else {
      $all_Recordset2 = mysql_query($query_Recordset2);
      $totalRows_Recordset2 = mysql_num_rows($all_Recordset2);
    $totalPages_Recordset2 = ceil($totalRows_Recordset2/$maxRows_Recordset2)-1;
    $queryString_Recordset2 = "";
    if (!empty($_SERVER['QUERY_STRING'])) {
      $params = explode("&", $_SERVER['QUERY_STRING']);
      $newParams = array();
      foreach ($params as $param) {
        if (stristr($param, "pageNum_Recordset2") == false &&
            stristr($param, "totalRows_Recordset2") == false) {
          array_push($newParams, $param);
      if (count($newParams) != 0) {
        $queryString_Recordset2 = "&" . htmlentities(implode("&", $newParams));
    $queryString_Recordset2 = sprintf("&totalRows_Recordset2=%d%s", $totalRows_Recordset2, $queryString_Recordset2);
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <table cellspacing="0">
      <tr>
        <td width="300"></td>
        <td></td>
        <td width="14"></td>
        <td width="0"></td>
      </tr>
      <?php do { ?>
        <tr>
          <td height="32" colspan="2" bgcolor="#3399CC"><?php echo $row_Recordset2['description']; ?></td>
        </tr>
        <tr>
          <td><img src="<?php echo $row_Recordset2['image']; ?>" width="300" height="250" border="5" /></td>
          <td width="300" height="250" align="center" bgcolor="#FFFFFF"><?php echo $row_Recordset2['description']; ?></td>
        </tr>
        <?php } while ($row_Recordset2 = mysql_fetch_assoc($Recordset2)); ?>
    </table>
    <p>
      <?php
            Place code to connect to your DB here.
        include('Connections/myconnectboi.php');    // include your code to connect to DB.
        $tbl_name="hiphop";        //your table name
        // How many adjacent pages should be shown on each side?
        $adjacents = 3;
           First get total number of rows in data table.
           If you have a WHERE clause in your query, make sure you mirror it here.
        $query = "SELECT COUNT(*) as num FROM $tbl_name";
        $total_pages = mysql_fetch_array(mysql_query($query));
        $total_pages = $total_pages['num'];
        /* Setup vars for query. */
        $targetpage = "test.php";     //your file name  (the name of this file)
        $limit = 4;                                 //how many items to show per page
        $page = $_GET['page'];
        if($page)
            $start = ($page - 1) * $limit;             //first item to display on this page
        else
            $start = 0;                                //if no page var is given, set start to 0
        /* Get data. */
        $sql = "SELECT id FROM $tbl_name LIMIT $start, $limit";
        $result = mysql_query($sql);
        /* Setup page vars for display. */
        if ($page == 0) $page = 1;                    //if no page var is given, default to 1.
        $prev = $page - 1;                            //previous page is page - 1
        $next = $page + 1;                            //next page is page + 1
        $lastpage = ceil($total_pages/$limit);        //lastpage is = total pages / items per page, rounded up.
        $lpm1 = $lastpage - 1;                        //last page minus 1
            Now we apply our rules and draw the pagination object.
            We're actually saving the code to a variable in case we want to draw it more than once.
        $pagination = "";
        if($lastpage > 1)
            $pagination .= "<div class=\"pagination\">";
            //previous button
            if ($page > 1)
                $pagination.= "<a href=\"$targetpage?page=$prev\">« previous</a>";
            else
                $pagination.= "<span class=\"disabled\">« previous</span>";   
            //pages   
            if ($lastpage < 7 + ($adjacents * 2))    //not enough pages to bother breaking it up
                for ($counter = 1; $counter <= $lastpage; $counter++)
                    if ($counter == $page)
                        $pagination.= "<span class=\"current\">$counter</span>";
                    else
                        $pagination.= "<a href=\"$targetpage?page=$counter\">$counter</a>";                   
            elseif($lastpage > 5 + ($adjacents * 2))    //enough pages to hide some
                //close to beginning; only hide later pages
                if($page < 1 + ($adjacents * 2))       
                    for ($counter = 1; $counter < 4 + ($adjacents * 2); $counter++)
                        if ($counter == $page)
                            $pagination.= "<span class=\"current\">$counter</span>";
                        else
                            $pagination.= "<a href=\"$targetpage?page=$counter\">$counter</a>";                   
                    $pagination.= "...";
                    $pagination.= "<a href=\"$targetpage?page=$lpm1\">$lpm1</a>";
                    $pagination.= "<a href=\"$targetpage?page=$lastpage\">$lastpage</a>";       
                //in middle; hide some front and some back
                elseif($lastpage - ($adjacents * 2) > $page && $page > ($adjacents * 2))
                    $pagination.= "<a href=\"$targetpage?page=1\">1</a>";
                    $pagination.= "<a href=\"$targetpage?page=2\">2</a>";
                    $pagination.= "...";
                    for ($counter = $page - $adjacents; $counter <= $page + $adjacents; $counter++)
                        if ($counter == $page)
                            $pagination.= "<span class=\"current\">$counter</span>";
                        else
                            $pagination.= "<a href=\"$targetpage?page=$counter\">$counter</a>";                   
                    $pagination.= "...";
                    $pagination.= "<a href=\"$targetpage?page=$lpm1\">$lpm1</a>";
                    $pagination.= "<a href=\"$targetpage?page=$lastpage\">$lastpage</a>";       
                //close to end; only hide early pages
                else
                    $pagination.= "<a href=\"$targetpage?page=1\">1</a>";
                    $pagination.= "<a href=\"$targetpage?page=2\">2</a>";
                    $pagination.= "...";
                    for ($counter = $lastpage - (2 + ($adjacents * 2)); $counter <= $lastpage; $counter++)
                        if ($counter == $page)
                            $pagination.= "<span class=\"current\">$counter</span>";
                        else
                            $pagination.= "<a href=\"$targetpage?page=$counter\">$counter</a>";                   
            //next button
            if ($page < $counter - 1)
                $pagination.= "<a href=\"$targetpage?page=$next\">next »</a>";
            else
                $pagination.= "<span class=\"disabled\">next »</span>";
            $pagination.= "</div>\n";       
    ?>
      <?php
            while($row = mysql_fetch_array($result))
            // Show if not last page
        ?>
      <?=$pagination?> 
    </p>
    <p> </p>
    <p> </p>
    <p> </p>
    </body>
    </html>
    <?php
    mysql_free_result($Recordset2);
    ?>

  • PHP/ORACLE Pagination

    Hi All,
    Can any one help me to create PHP/ORACLE Pagination..
    Thanks
    Sam

    Hi pals
    Here is a good easy sample of pagination using Oracle in PHP, Please notice that I have a layer, running different queries which I need, and in some lines below I've used them but the names of the function and variable which I've called are obviously seen that how they perform.
    Further, Please note that you would be expected to call your own oracle database through PHP oracle functions, and as you can see, I have a table storing page sessions and the function "oracle->select" runs the query "SELECT * FROM SESSION_ID" and returns its result and the variable "numberrows" has the number of rows which the implemented query has returned.
    <html>
    <head>
    <title>PAGING</title>
    </head>
    <body>
    <?
    session_start();
    $session_check = $orcl->oracle_select("SESSION_ID", "*");
    $Per_Page = 10; // Per Page
    $Num_Rows = $orcl->numberrows;
    if( !isset( $_GET["Page"] ) )
         $Page=1;
    else
    $Page = $_GET["Page"];
    $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="800" border="1" cellpadding="0" cellspacing="0" style="font-size: 12px; font: Tahoma">
    <tr>
    <th width="400" align="center">CUSTOMER</th>
    <th width="400" align="center">Name</th>
    </tr>
    <?
    for($i=$Page_Start; $i<$Page_End; $i++)
    ?>
    <tr>
    <td width="400" align="center"><div align="center"><?=$session_check["ID"][$i]; ?></div></td>
    <td width="400" align="center"><?=$session_check["USER_ID"][$i];?></td>
    </tr>
    <?
    ?>
    </table>
    <table width="800" border="0" cellpadding="0" cellspacing="0" style="font-size: 12px; font: Tahoma">
    <tr>
    <td align="center"> </td>
    </tr>
    <tr>
    <td align="center">Total <?= $Num_Rows;?> Record : <?=$Num_Pages;?> Page :</td>
    </tr>
    <tr>
    <td align="center">
    <?
    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> ";
    ?>
    </td>
    </tr>
    <tr>
    <td align="center"> </td>
    </tr>
    </table>
    </body>
    </html>

  • Pagination of output  php code with sql code

    if one program of php including sql query
    it seems to output wrong .(means some data will be calculated sum)
    if php code output all data in one page.pagination
    it seems to output right(means some data will be calculated sum)
    if there has column of company including two companies of A and B.
    and if each page output 3 lines while A company has 4 lines in sql query,so
    the last line of A company will output in second page,
    i want to calculate A company including 4 lines sum
    how to calculate sum of company of A in second page.
    i think it will be a good interesting question of php code with sql code.
    who can solution thus question ?
    thanks !

    Hi,
    for Example:
    SELECT sum(quantity * price)
    FROM orders
    WHERE COMPANY = 'A';
    This will give you the total amount for company A.
    But remember that your example table will give no output, since you have no price column. So you must decide, what which sum to calculate.
    A sum only calculated over the quantity makes IMHO no sense, because there are apples and bananas ...
    Greetings from Hamburg
    Thorsten Körner

  • [MX2004] send mediante php pero que no muestre una pagina web

    quiero enviar una varibable por php pero al hacerlo se me
    abre la venta del
    navegador web
    enviar.php
    <?php
    //echo $HTTP_POST_VARS['cadena'];
    $destino="fichero.dat";
    $abrir = fopen($destino,"w");
    $cadena="esto es una prueba".$HTTP_POST_VARS['cadena'];
    $gestor = fputs($abrir,$cadena);
    ?>
    en flash
    var lv = new LoadVars();
    lv.cadena = "KIKO";
    lv.send("enviar.php","_self", "POST");

    Hola !
    Lo siento olvide que cambio de la version 2012 a la 2013, fue un error mio. Sin embargo ya que realizaste los ajustes necesarios, y nos aseguramos que la documento *.html es estatico, el web server no debe de cambiarlos al cargarlos. El web service lo unico que hace es mandar llamar un archivo preestablecido, por ende debe de haber un error en la forma en que estamos mandando llamar el archivo ... Por tanto te propongo revisar los siguientes puntos :
    1. El web service te carga un documento (no el que tu esperas), lo que es una buena senal. Si el documento no estuviera dentro del build o algo por el estilo, te mandaria un error 404. Hay que asegurarnos que no tienes unas versiones pasadas o modificadas de tu pagina *.html que por error esten siendo llamadas, y nos haga pensar que el codigo esta siento cambiado.
    2. Estas utilizando hojas de estilo (style sheets) declaradas fuera de tu codigo principal ?? Hay que asegurarnos que estas llamando todas las css rules correctamente.
    3. Tener todos los archivos necesarios dentro del build. Si tu pagina principal de *.html manda llamar otros archivos, entre ellos hojas de estilo, hay que tenerlas dentro del build del web service. Igual te propongo declarar todas tus css rules dentro del <style> ... </style> del codigo principal y mandarlo llamar solo para asegurar que no va por ahi el problema.
    4. Por ultimo, hay que asegurarnos que el nombre de la computadora servidor corresponde con el IP donde esta corriendo el web service. No vaya a ser que por algun error estemos llamando a la computadora del vecino o algo por el estilo, pero lo dudo .. siento que no va por aqui .. solo se me ocurrio xD
    Me intriga mucho tu caso ! Seguire buscando infromacion, vere si consigo una computadora con labview 2013 y tratare de reproducir el error. Cualquier resultado, solucion o informacion que encuentres, publicala ! Quiero seguir al tanto de lo que sucedio !
    Saludos !

  • Pasar valores a otra Pagina (de Apex a PHP)

    Buen día
    Tengo una página básica en ápex que captura el valor de dos campos y los debe de pasar a una página PHP pero no encuentro la forma de que estos valores me pasen a la pagina PHP si alguien tiene esto resuelto
    Gracias por la Ayuda

    Lo termine solucionando el problema era que uno de los includes entraba en conflicto con la pagina de plantilla porque estaba mal editado

  • PHP results pagination

    Hi All,
    I'm using the following script to display search results on various pages, but there are so many pages of results the list of pages takes up too much room, see;
    http://dev.merco.co.uk/node/9
    I would like the list to look more like this;
    1  2 3 ....  57 58 59 [Next] Last Page
    With dots to show there are more pages between the first and last pages.
    Any advice on how to do this would be much appreciated!
    Isabelle
    CODE START ***************************************************************************************** **************************************
    <?php
    // how many rows to show per page
    $rowsPerPage = 5;
    // by default we show first page
    $pageNum = 1;
    // if $_GET['page'] defined, use it as page number
    if(isset($_GET['page']))
        $pageNum = $_GET['page'];
    // counting the offset
    $offset = ($pageNum - 1) * $rowsPerPage;
    $user_name = "xxxx";
    $password = "xxxx";
    $database = "xxxx";
    $server = "xxxx";
    $db_handle = mysql_connect($server, $user_name, $password);
    $db_found = mysql_select_db($database, $db_handle);
    // how many rows we have in database
    $query   = "SELECT COUNT(job_title) AS numrows FROM jobs";
    $result  = mysql_query($query) or die('Error, query failed');
    $row     = mysql_fetch_array($result, MYSQL_ASSOC);
    $numrows = $row['numrows'];
    // how many pages we have when using paging?
    $maxPage = ceil($numrows/$rowsPerPage);
    // print the link to access each page
    $self = $_SERVER['PHP_SELF'];
    $nav  = '';
    for($page = 1; $page <= $maxPage; $page++)
       if ($page == $pageNum)
          $nav .= " $page "; // no need to create a link to current page
       else
          $nav .= " <a href=\"9?page=$page\">$page</a> ";
    // creating previous and next link
    // plus the link to go straight to
    // the first and last page
    if ($pageNum > 1)
       $page  = $pageNum - 1;
       $prev  = " <a href=\"9?page=$page\">[Prev]</a> ";
       $first = " <a href=\"9?page=1\">First Page</a> ";
    else
       $prev  = ''; // we're on page one, don't print previous link
       $first = ''; // nor the first page link
    if ($pageNum < $maxPage)
       $page = $pageNum + 1;
       $next = " <a href=\"9?page=$page\">[Next]</a> ";
       $last = " <a href=\"9?page=$maxPage\">Last Page</a> ";
    else
       $next = ''; // we're on the last page, don't print next link
       $last = ''; // nor the last page link
    // print the navigation link
    $nav  = '';
    for($page = 1; $page <= $maxPage; $page++)
       if ($page == $pageNum)
          $nav .= " $page "; // no need to create a link to current page
       else
          $nav .= " <a href=\"9?page=$page\">$page</a> ";
    ?>

    Hi,
    if you have the parameters in the $_GET array, which you most probably do, you can just do this:
    $myget = $_GET;
    $myget['offset'] = (insert your offset here);
    $newurl = 'http://www.mysite.com/results.php?' . http_build_query($myget);
    Also, being that this is an Oracle/PHP forum, you might have better luck asking these kinds of questions in some generic PHP forum, as your question has not much to do with Oracle itself.
    Hope this helps,
    Michal

  • PHP/Spry Tabs/Pagination

    Hello all,
    I have a results page which contains tabs for separate query results from multiple DBs on one page.  I would like to include record set paging for each record set under each tab.  When I select a different tab, click on "Next" in the paging, the page refreshes back to the first tab.  Is the way to keep it on the tab selected and make the paging work?
    Any help or insight would be appreciated!
    Thanks

    Better late than never I guess... I'm no great shakes at this stuff but I found the following is what worked for me http://foundationphp.com/tutorials/spry_url_utils.php bit messy URL but it does work.  I'd be interested to hear if anyone has a better solution.

  • Error message when I run searches on my website (PHP/MySQL help)

    Hey guys, can someone tell me why this is happening in my PHP? I run a search on my website and get this error message ye sI filled the hostname, username and password)
    Results for
    PHP Error Message
    Warning:  mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/a8295382/public_html/Search Results.php on line 233
    Couldn't execute query
    Here is my PHP code:
    <?php
    $hostname_logon = "host" ;
    $database_logon = "hostname" ;
    $username_logon = username" ;
    $password_logon = "password" ;
    //open database connection
    $connections = mysql_connect($hostname_logon, $username_logon, $password_logon) or die ( "Unabale to connect to the database" );
    //select database
    mysql_select_db($database_logon) or die ( "Unable to select database!" );
    //specify how many results to display per page
    $limit = 15;
    //get the search variable from URL
    $var = mysql_real_escape_string(@$_REQUEST['q']);
    //get pagination
    $s = mysql_real_escape_string($_REQUEST['s']);
    //set keyword character limit
    if(strlen($var) < 3){
        $resultmsg =  "<p>Search Error</p><p>Keywords with less then three characters are omitted...</p>" ;
    //trim whitespace from the stored variable
    $trimmed = trim($var);
    $trimmed1 = trim($var);
    //separate key-phrases into keywords
    $trimmed_array = explode(" ",$trimmed);
    $trimmed_array1 = explode(" ",$trimmed1);
    // check for an empty string and display a message.
    if ($trimmed == "") {
        $resultmsg =  "<p>Search Error</p><p>Please enter a search...</p>" ;
    // check for a search parameter
    if (!isset($var)){
        $resultmsg =  "<p>Search Error</p><p>We don't seem to have a search parameter! </p>" ;
    // Build SQL Query for each keyword entered
    foreach ($trimmed_array as $trimm){
    // EDIT HERE and specify your table and field names for the SQL query
    // MySQL "MATCH" is used for full-text searching. Please visit mysql for details.
    $query = "SELECT * , MATCH (field1, field2) AGAINST ('".$trimm."') AS score FROM table_name WHERE MATCH (field1, field2) AGAINST ('+".$trimm."') ORDER BY score DESC";
    // Execute the query to  get number of rows that contain search kewords
    $numresults=mysql_query ($query);
    $row_num_links_main =mysql_num_rows ($numresults);
    //If MATCH query doesn't return any results due to how it works do a search using LIKE
    if($row_num_links_main < 1){
        $query = "SELECT * FROM table_name WHERE field1 LIKE '%$trimm%' OR field2 LIKE '%$trimm%'  ORDER BY field3 DESC";
        $numresults=mysql_query ($query);
        $row_num_links_main1 =mysql_num_rows ($numresults);
    // next determine if 's' has been passed to script, if not use 0.
    // 's' is a variable that gets set as we navigate the search result pages.
    if (empty($s)) {
         $s=0;
      // now let's get results.
      $query .= " LIMIT $s,$limit" ;
      $numresults = mysql_query ($query) or die ( "Couldn't execute query" );
      $row= mysql_fetch_array ($numresults);
      //store record id of every item that contains the keyword in the array we need to do this to avoid display of duplicate search result.
      do{
          $adid_array[] = $row[ 'field_id' ];
      }while( $row= mysql_fetch_array($numresults));
    } //end foreach
    //Display a message if no results found
    if($row_num_links_main == 0 && $row_num_links_main1 == 0){
        $resultmsg = "<p>Search results for: ". $trimmed."</p><p>Sorry, your search returned zero results</p>" ;
    //delete duplicate record id's from the array. To do this we will use array_unique function
    $tmparr = array_unique($adid_array);
    $i=0;
    foreach ($tmparr as $v) {
       $newarr[$i] = $v;
       $i++;
    //total result
    $row_num_links_main = $row_num_links_main + $row_num_links_main1;
    // now you can display the results returned. But first we will display the search form on the top of the page
    echo '<form action="search.php" method="get">
            <div>
            <input name="q" type="text" value="'.$q.'">
            <input name="search" type="submit" value="Search">
            </div>
    </form>';
    // display an error or, what the person searched
    if( isset ($resultmsg)){
        echo $resultmsg;
    }else{
        echo "<p>Search results for: <strong>" . $var."</strong></p>";
        foreach($newarr as $value){
        // EDIT HERE and specify your table and field unique ID for the SQL query
        $query_value = "SELECT * FROM newsight_articles WHERE field_id = '".$value."'";
        $num_value=mysql_query ($query_value);
        $row_linkcat= mysql_fetch_array ($num_value);
        $row_num_links= mysql_num_rows ($num_value);
        //create summary of the long text. For example if the field2 is your full text grab only first 130 characters of it for the result
        $introcontent = strip_tags($row_linkcat[ 'field2']);
        $introcontent = substr($introcontent, 0, 130)."...";
        //now let's make the keywods bold. To do that we will use preg_replace function.
        //Replace field
          $title = preg_replace ( "'($var)'si" , "<strong>\\1</strong>" , $row_linkcat[ 'field1' ] );
          $desc = preg_replace ( "'($var)'si" , "<strong>\\1</strong>" , $introcontent);
          $link = preg_replace ( "'($var)'si" , "<strong>\\1</strong>" ,  $row_linkcat[ 'field3' ]  );
            foreach($trimmed_array as $trimm){
                if($trimm != 'b' ){
                    $title = preg_replace( "'($trimm)'si" ,  "<strong>\\1</strong>" , $title);
                    $desc = preg_replace( "'($trimm)'si" , "<strong>\\1</strong>" , $desc);
                    $link = preg_replace( "'($trimm)'si" ,  "<strong>\\1</strong>" , $link);
                 }//end highlight
            }//end foreach $trimmed_array
            //format and display search results
                echo '<div class="search-result">';
                    echo '<div class="search-title">'.$title.'</div>';
                    echo '<div class="search-text">';
                        echo $desc;
                    echo '</div>';
                    echo '<div class="search-link">';
                    echo $link;
                    echo '</div>';
                echo '</div>';
        }  //end foreach $newarr
        if($row_num_links_main > $limit){
        // next we need to do the links to other search result pages
            if ($s >=1) { // do not display previous link if 's' is '0'
                $prevs=($s-$limit);
                echo '<div class="search_previous"><a href="'.$PHP_SELF.'?s='.$prevs.'&q='.$var.'">Previous</a>
                </div>';
        // check to see if last page
            $slimit =$s+$limit;
            if (!($slimit >= $row_num_links_main) && $row_num_links_main!=1) {
                // not last page so display next link
                $n=$s+$limit;
                echo '<div  class="search_next"><a href="'.$PHP_SELF.'?s='.$n.'&q='.$var.'">Next</a>
                </div>';
        }//end if $row_num_links_main > $limit
    }//end if search result
    ?>
    Anyone got any ideas as to why this is happening?
    Also, I have not created any tables in my database... is this why it doesn't display any search results from my website?

    Sorry, but it doesn't help JTANNA.
    What is your definition of "more efficiently"? If it's limitation of search results, branded search, and limitation of styling your results then google search is more efficient. Real developers rely on their own developments. For example: how can google search display results from a password-protected site? They can't.
    best,
    Shocker

  • Pagination Issue

    Hi Guys,
    I am trying to solve a pagination problem for my friend. He
    runs an antiques business, and wants to be able to select different
    items from a dropdown menu, which when listed are paginated so that
    they do not appear all on one page. I have done a bit of pagination
    before so I said that I'd help him. I have attached the code, for
    which I have set up a small example database based on nationality
    of people. If you click on British, only British names will appear
    etc. This seems to work well, but the problem with the pagination
    is that when I click on the link for say page 2, 3, 4, or the final
    page then it just takes me back to the radio button menu again and
    doesn't display the rest of the results.
    If anyone can give me idea as to why this is going wrong then
    I'd be very grateful as I need to meet him first thing tomorrow to
    show him what I have done.
    Thanks
    Stuart
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>Untitled Document</title>
    </head>
    <body>
    <?php
    // Assign connection data to variables
    $host = "***********";
    $user = "***********";
    $pass = "***********";
    $db = "comments";
    // Connect to MySQL
    $connection = mysql_connect($host, $user, $pass) or
    die('Error: Could not connect you to MySQL');
    // Connect to database
    mysql_select_db($db) or die('Error: Could not connect you to
    the database');
    // **** Pagination Variables **** \\
    // set total records per page
    $total = 1;
    // set URL variable
    // Set the default value of $urlVar (the current page) to 1.
    $urlVar = (!isset($_GET['page'])) ? 1 : $_GET['page'];
    // ???????????????? Confused!!
    $from = (($urlVar*$total)-$total);
    // defines the LIMIT for each page, which can be passed
    through the mysql_query function.
    // This informs MySQL as to how many records are allowed on a
    page.
    $limit = " LIMIT ".$from.",".$total;
    // Check to see if the submit button has been clicked or not
    if(isset($_POST['submit']) &&
    !empty($_POST['submit'])){
    if(isset($_POST['nationality'])){
    // Switch statement
    switch($_POST['nationality']){
    case 'Brit':
    $query = "SELECT * FROM siri WHERE nationality='British'";
    break;
    case 'Amer':
    $query = "SELECT * FROM siri WHERE nationality='American'";
    break;
    case 'Nadian':
    $query = "SELECT * FROM siri WHERE nationality='Canadian'";
    break;
    // end of switch statement
    $query_rs = mysql_query($query.$limit) or die('Error:
    '.mysql_error());
    // Convert the results of $query_rs into rows using
    mysql_num_rows()
    $num_rows = mysql_num_rows($query_rs);
    if(mysql_num_rows($query_rs) > 0){
    echo "Number of rows is: $num_rows";
    echo "<table>";
    echo "<tr>";
    echo '<th scope="col">Id</th>';
    echo '<th scope="col">Name</th>';
    echo '<th scope="col">Nationality</th>';
    echo "</tr>";
    while($row = mysql_fetch_assoc($query_rs)){
    echo "<tr>";
    echo "<td>".$row['id_no']."</td>";
    echo "<td>".$row['name']."</td>";
    echo "<td>".$row['nationality']."</td>";
    echo "</tr>";
    echo "</table>";
    myPagination($query, $total, $urlVar);
    // end of if statement checking to see if nationality radio
    button has been selected
    } else {
    echo "Please choose a nationality";
    ?>
    <form method="post" name="find_names">
    <p><input type="radio" name="nationality"
    value="Brit" /> British</p>
    <p><input type="radio" name="nationality"
    value="Amer" /> American</p>
    <p><input type="radio" name="nationality"
    value="Nadian" /> Canadian</p>
    <p><input type="submit" name="submit"
    value="Submit" /></p>
    </form>
    </body>
    </html>
    <?php
    function myPagination($query, $totalPerPage, $urlVar){
    // assign the results of $query to variable $db_result
    $db_result = mysql_query($query);
    $totalrecords = mysql_num_rows($db_result);
    // below code works out how many pages there will be. For
    example if there are
    // 20 records / 10 total per page = 2 pages.
    $totalpages = ceil($totalrecords / $totalPerPage);
    // define $prev variable. This is used later to allow the
    user to visit the previous page.
    $prev = ($urlVar - 1);
    // define $next variable. This is used later to allow the
    user to visit the following page.
    $next = ($urlVar + 1);
    $pagination = '<div class="pagination">'."\n";
    // displays the page number the user is viewing and the
    total number of pages.
    $pagination .= '<p>You are on page '.$urlVar.' of
    '.$totalpages.'</p>'."\n";
    $pagination .= '<ul>'."\n";
    $pagination .= 'Page: [ ';
    if($urlVar > 1){
    // if current page is greater than 1 then display
    '<<.' This allows user to go back to
    // latest comments.
    $pagination .= '<li><a
    href="'.$_SERVER['PHP_SELF'].'">&laquo;</a></li>'."\n";
    if($urlVar != 2) {
    // if current page is not the value '2' then display '<',
    which allows the user to revisit the
    // previous page.
    $pagination .= '<li><a
    href="'.$_SERVER['PHP_SELF'].'?page='.$prev.'">&lsaquo;</a></li>'."\n";
    // start the counter at 2, iterate through the for loop
    until you reach the total number
    // of pages.
    for($counter=2; $counter <= $totalpages; $counter++){
    if($counter != $totalpages){
    if($urlVar == $counter){
    // if the current page is equal to the counter, do not
    display the $urlVal as a link
    // highlight it in bold so that it identifies which page you
    are on.
    $pagination .=
    '<li><strong>'.$counter.'</strong></li>'."\n";
    } else {
    // if not current page then display each page as a hyperlink
    with the appropriate page number.
    $pagination .= '<li><a
    href="'.$_SERVER['PHP_SELF'].'?page='
    .$counter.'">'.$counter.'</a></li>'."\n";
    if($urlVar < $totalpages){
    if($urlVar < $totalpages -1){
    // Display the '>' hyperlink if the current page is less
    than the 2nd from final page. Allows user
    // to jump to the next page.
    $pagination .= '<li><a
    href="'.$_SERVER['PHP_SELF'].'?page='.$next.'">></a></li>'."\n";
    // Display '>>' to allow user to jump to the final
    page.
    $pagination .= '<li><a
    href="'.$_SERVER['PHP_SELF'].'?page='.$totalpages.'">&raquo;</a></li>'."\n";
    // below code closes up the unordered list and div. Displays
    the list of page numbers.
    $pagination .= ' ]'."\n";
    $pagination .= '</ul>'."\n";
    $pagination .= '</div>'."\n";
    echo $pagination;
    ?>

    Does anyone have any idea about this one?

  • Pagination urls and google

    I've used DW pagination quite extensively and now google's index is full of hundreds of pagination urls in the format:
    http://www.domain.com/blog/index.php?pageNum_stuff=1&totalRows_stuff=250
    I don't think this is doing my ranking any favours.
    What can I do about it?
    Thanks

    If you are referring to the included Maps application, it isn't possible to delete any application included with the firmware.
    If you are referring to a 3rd party app downloaded from the app store and Google is the developer for the app, you should contact Google.

  • Pagination with url parameter?

    I have a page that displays the contents of a mysql database
    via a dynamic table.
    currently I have the recordset query set to filter the id by
    url parameter "catID".
    So page?catID=5 displays the contents of record id 5 of the
    mysql table.
    I am trying to add pagination to this page but do not know
    what I am doing :L
    I can use the wizard to place pagination if I remove the
    filter on the query, and happily page through all the
    records....however I want my cake and want to eat it to...so I
    really want to get the pagination working and still be able to use
    the url parameter function to pinpoint records.
    Thanks for your time and assistance.
    Saw

    Saw_duuhst wrote:
    > dreamweaver cs3, mysql, php
    Just make sure your recordset is filtering from the
    querystring and your
    pagination links should be inserting them too. In all the ASP
    pages I
    have made with pagination they always carry over the
    querystring.
    Dooza
    Posting Guidelines
    http://www.adobe.com/support/forums/guidelines.html
    How To Ask Smart Questions
    http://www.catb.org/esr/faqs/smart-questions.html

  • Data loss during Pagination

    I have a dropdown selection box setup on a PHP page and its
    options coming from a MySQL database. When user selects an option,
    it will POST to another detail PHP page to list out all records. I
    used the recordset and server behavior functions in Dreamweaver 8
    to achieve that.
    It works well until I setup pagination using server behavior
    function to limit records displayed on the page. The first page of
    records displayed OK but when I click next page or last page,
    nothing was displayed although the record number showing correctly.
    It seemed the option value posted to page 1 OK but lost when
    viewing 2nd, 3rd....pages.
    Anyone has any idea on how to rectify it ? PLEASE

    I think that there's a disclaimer you can read about data loss during repairs. I'd have to locate it but essentially it says that you need to back up files for any repairs. You just never know. Whether it's a logic board or a Shift key, you just don't know what they're doing or how they're doing it. So it's best to back up.
    Call the store. It's not ridiculous. All sorts of people have all sorts of important data on their machines - data that is crucial to them. It's not a big deal.

  • Pagination with 10 pages - 5 either side

    Hi all,
    I'm trying to get some pagination to my results page.
    I would like the navigation links to only show 5 pages on either side of the current page.
    For example if I have 40 pages in total:
    Page 1 shows:
    *1* _2_ _3_ _4_ _5_ _6_ _7_ _8_ _9_ _10_ [_Last_] Next
    Page 18 shows:
    [_First_] _14_ _15_ _16_ _17_ *18* _19_ _20_ _21_ _22_ _23_ [_Last_] Next
    Currently I have all the page links (1-40 echoed) by using this tutorial:
    http://www.phpbuilder.com/tips/item.php?id=2
    Hope someone can help as I'm completed stumped!

    If my very quick scan of the article was correct you'll need to change the loop start and end values in this part of the code:
    // Now loop through the pages to create numbered links
    // ex. 1 2 3 4 5 NEXT >>
    for ($i=1;$i<=$pages;$i++) {
         // Check if on current page
         if (($offset/$limit) == ($i-1)) { Change the loop bounds 1 and $pages. You'll need to do some maths to work out the current page number, and then add and subtract 5 for the start and end. Make sure not to go past the start or end of the set of pages. Good luck.

  • Another darn pagination question

    OK, I know we've all heard enough on this subject, but darn it I just cannot get this to work. Could it be something in my set-up? This is almost identical to the code CJJ posted earlier. But all i get is the first list and links at the bottom. When I click on any other page link the next table of data does not show. Any help would be greatly appreciated.
    Signed,
    Confused.
    <?php
    define('ROWSPERPAGE', 20);
    if (!isset($_GET['pagina']))
         $pagina = 1;
    else
         $pageNum = $_GET['pagina'] < 1 ? 1 : $_GET['pagina'];
    $menor = ($pagina - 1) * ROWSPERPAGE + 1;
    $maior = $menor + ROWSPERPAGE - 1;
    echo "pagina is $pagina, menor is $menor, maior is $maior<br>\n";
    $db_conn = OCIPLogon('xxx', 'xxx', 'xxxxxx');
    $mysql = "select sty_i1_style_num from glr_style_color_v1";
    $pagesql = "select * from (select a.*, rownum rnum from ( $mysql ) a where rownum <=$maior) where rnum >= $menor";
    $s = OCIParse($db_conn, $pagesql);
    OCIExecute($s, OCI_DEFAULT);
    echo "<table>";
    while (OCIFetchInto($s, $row, OCI_ASSOC+OCI_RETURN_NULLS))
         $variavel = $row['STY_I1_STYLE_NUM'];
         echo "<tr><td>" . htmlentities($variavel) . "</td> </tr>";
         echo "</table>";
    // This is where we count the number of entries.
    $sql2 = "select count(*) as CONTADOR from glr_style_color_v1";
    $s2 = OCIParse($db_conn, $sql2);
    OCIExecute($s2, OCI_DEFAULT);
    while (OCIFetch($s2))
         $conta = OCIResult($s2, 'CONTADOR');
    echo "Conta is ".$conta."<br>\n";
    for ($i = 1; $i < $conta/ROWSPERPAGE+1; $i++)
         if ($pagina == $i)
              echo $i." \n";
              else
              echo "<a href='?pagina=$i'>$i</a> \n";
    ?>

    #1) Yes. The import includes all the audio and video that you recorded with the camera. But it doesn't include all the sound effects and music you need to add to the production to make it shine.
    Once you import the footage you can put the drive with the MXF files on a shelf. You are done with it. That is your master tape. Shelve it.
    Shane

Maybe you are looking for

  • Referncing document should not be changed

    Dear SAP Gurus, I have a scenario and it is for example that if sales order is created with reference to the quotation so quotation should not be changed....and the sales order should have the same material which is copied from the quotation and we s

  • Picture Gallery Help!

    Hey everybody, I am new to flash and have three seperate but sort - of related questions that I was hoping you guys could help me answer! Question 1. In april, I will be putting on a "website" - its going to be displayed live via a projector onto a p

  • ADF Faces (Trinidad?) & Facelets Support

    This is long, but help and advice is very much needed. My programming team is facing a migration from UIX to JSF (ADF Faces) for future applications and we have hit a road block in regards to a template structure that is easy to use and maintain. We

  • Best way to handle gifs in an app

    Hello, I have been playing around with project siena for a week or so now, and I am very impressed with its capabilities. I have a requirement to display a gif image on an app, this gif is about 5 MB in size and a new one is uploaded daily so I canno

  • How to do a bass slide?

    Hi all, Can anyone help me figure out how to do this kind of bass slide? I uploaded a small .wav file. I suspect you get a particular synth bass and do something with the pitch bend on the MIDI controller? If anyone knows of a particular present, say