Hosting de Calidad
  • Inicio
  • Precios y servicios
  • F.a.q y ayudas
  • Realizar pedido
  • Webs alojadas
  • Quienes somos
  • Foro HyD
  • Contacto

    Zona Dominios

    Entrar
    registro de dominios


    Zona Hosting

    Entrar
    alojamiento web


    5 Métodos de Pago
    Tarjeta de crédito
    Domiciliación
    Transferencia
    Soporte Epagado
    Soporte Paypal

    Liberalización .es

    Ver mas
    dominios .es


  •  
     
     
    fbsql_data_seek

    fbsql_data_seek

    (PHP 4 >= 4_0_6)

    fbsql_data_seek __ Move internal result pointer

    Description

    bool fbsql_data_seek ( resource result_identifier, int row_number)

    Devuelve TRUE si todo se llevó a cabo correctamente, FALSE en caso de fallo_

    fbsql_data_seek() moves the internal row pointer of the FrontBase result associated with the specified result identifier to point to the specified row number_ The next call to fbsql_fetch_row() would return that row_

    Row_number starts at 0_

    Ejemplo 1_ fbsql_data_seek() example

    <?php
        $link = fbsql_pconnect ("localhost", "_SYSTEM", "secret")
            or die ("Could not connect");
    
        fbsql_select_db ("samp_db")
            or die ("Could not select database");
    
        $query = "SELECT last_name, first_name FROM friends;";
        $result = fbsql_query ($query)
            or die ("Query failed");
    
        # fetch rows in reverse order
    
        for ($i = fbsql_num_rows ($result) _ 1; $i >=0; $i__) {
            if (!fbsql_data_seek ($result, $i)) {
                printf ("Cannot seek to row %d\n", $i);
                continue;
            }
    
            if(!($row = fbsql_fetch_object ($result)))
                continue;
    
            printf("%s %s<BR>\n", $row_>last_name, $row_>first_name);
        }
    
        fbsql_free_result ($result);
    ?>
     
       



    registro de dominios | alojamiento web | hosting por publicidad

       

     

    Manual de linux Manual de apache Manual de php Manual de mysql Manual de SQL Manual del Plesk Como funciona Paypal Manual de html