Genero un listado dentro de una tabla levantando los datos de Mysql y PHP.
Genero una primera fila con el nombre de las columnas y despues de while los resultados.
El tema es que necesito dejar fija la fila con los nombres de las columnas para que se pueda hacer scroll de los resultados, pero no logro hacerlo.
Se que debo utilizar position:fixed pero no puedo
este es el codigo que tengo:
Código PHP:
Ver original
echo" <table border=0 id=tabletitle cellspacing=0> <tr class='spec'> <th class='title'>Player Name</th> <th class='title'>Prev. Owed</th> <th class='title'>Court Rental</th> <th class='title'>Pala Rental</th> <th class='title'>Beberage</th> <th class='title'>Lesson</th> <th class='title'>Pala Sale</th> <th class='title'> Balls</th> <th class='title'>Overgrip</th> <th class='title'>Food</th> <th class='title'>Other</th> <th class='title'>Total</th> <th class='title2'>Paid</th> <th class='title2'>Curr. Owed</th> </tr> </table> "; $results = $bd->query("SELECT * FROM playing_today ORDER by first_name ASC"); while ($fila = $results->fetchArray()) { echo" <tr class='spec'> <input style='display:none; type='checkbox' name='select[]' value='".$pa."'> <input type='hidden' name='playing' value='no'> <div id='btn_select'> <a href='javascript:seleccionar_todo();close_day()'></a> </div> </form> <form action='actualizar_player_price.php' method='POST'> <input type='hidden' name='personalID_org' value='$pa'> <td align=left width='170'>".$fn." ".$ln."</td> <td align=center width='25'>".$po."</td> <td align=center width='20'><input type='text' name='court_price' value='".$ct."' size=5 /></td> <td align=center width='25'><input type='text' name='pala_rental_price' value='".$pr."' size=5 /></td> <td align=center width='25'><input type='text' name='beberage_price' value='".$bb."' size=5 /></td> <td align=center width='20'><input type='text' name='lesson_price' value='".$le."' size=5 /></td> <td align=center width='20'><input type='text' name='pala_sale_price' value='".$ps."' size=5 /></td> <td align=center width='15'><input type='text' name='balls_price' value='".$ba."' size=5 /></td> <td align=center width='20'><input type='text' name='overgrip_price' value='".$og."' size=5 /></td> <td align=center width='20'><input type='text' name='food_price' value='".$fo."' size=5 /></td> <td align=center width='20'><input type='text' name='other' value='".$ot."' size=5 /></td> <td align=center width='20' style='color:red;'>";echo " ".$to." "; echo" <td align=center width='20'><input type='text' name='paid' value='".$pd."' size=5 /></td> <td align=center width='20' style='color:red;'>";echo " ".$co." "; echo"</td> <input type='hidden' name='curr_owned' value='".$co."'> <input type='hidden' name='prev_owed' value='".$po."'> <input type='submit' style='visibility:hidden;' value='.'></form> "; } echo " <tr class='spec'> <td align=center width='170'></td> <td align=center width='20'>".$res_po."</td> <td align=center width='20'>".$res_ct."</td> <td align=center width='20'>".$res_pr."</td> <td align=center width='20'>".$res_bb."</td> <td align=center width='20'>".$res_le."</td> <td align=center width='20'>".$res_ps."</td> <td align=center width='20'>".$res_ba."</td> <td align=center width='20'>".$res_og."</td> <td align=center width='20'>".$res_fo."</td> <td align=center width='20'>".$res_ot."</td> <td align=center width='20' style='color:red;'>".$res_sum."</td> <td align=center width='20' style='color:blue;'>".$res_pd."</td> <td align=center width='20' style='color:red;'>".$res_cow."</td> </tr> "; echo "</tr></tabla>";
Desde ya, gracias por el tiempo prestado