Newton Posted June 12, 2007 Share Posted June 12, 2007 I am trying to display a table in a window, works great. But what I want is to leave the headings on top at all times. If I put them in there own table the header and detail do not match up. IE: <div> <tr> <td> Name </td> <td> Address </td> </tr> </div> // sql statments <div class=scroll> <tr> <td> $Name </td> <td> $Address </td> </tr> </div> Name Address JOHN DOE 124 MAIN STREET if It all in the same table it lines up, but when I scroll down past the first page I loose the headings. <div> <tr> <td> Name </td> <td> Address </td> </tr> // sql statments <tr> <td> $Name </td> <td> $Address </td> </tr> </div> Name Address JOHN DOE 124 MAIN STREET Any suggestions. I am not using any frames or java script, just basic PHP/HTML. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.