Ciao a tutti , sono riuscita in parte ad avere il risultato che volevo .
Infatti modificando :

Codice PHP:
$query " SELECT nome FROM $table1 ";
$result mysql_query($query);
while(
$row mysql_fetch_array($result)) 
con

Codice PHP:
...
...
$rowsPerPage 10;
$pageNum 1;
if(isset(
$_GET['page']))
{
    
$pageNum $_GET['page'];
}
$offset = ($pageNum 1) * $rowsPerPage;
$query " SELECT nome FROM $table1 " .
         
" LIMIT $offset$rowsPerPage";
$result mysql_query($query) or die('Error, query failed');
while(
$row mysql_fetch_array($result))
{
$nome $row["nome"];
echo 
"<td>$nome</td>";
...
...

mi vengono mostrati 10 record di 100 inseriti nel db, ma aggiungendo :

Codice PHP:
if ($pageNum 1)
{
   
$page  $pageNum 1;
   
$prev  " <a href=\"$self?page=$page\">[Prev]</a> ";

   
$first " <a href=\"$self?page=1\">[First Page]</a> ";

else
{
   
$prev  ''
   
$first ''
}

if (
$pageNum $maxPage)
{
   
$page $pageNum 1;
   
$next " <a href=\"$self?page=$page\">[Next]</a> ";

   
$last " <a href=\"$self?page=$maxPage\">[Last Page]</a> ";

else
{
   
$next ''
   
$last ''
}

echo 
$first $prev $nav $next $last
invece di essere visibili i tasti paginazione mi esce il primo record
In cosa sbaglio?
Ci sono soluzioni alternative sempre utilizzando

Codice PHP:
while($row mysql_fetch_array($result)) 
ho gia cercato qualcosa di simile sul forum ma nulla

Grazie in anticipo a chi mi aiutera' .

Saluti
Milena