I assume you get some data from a database through php and generates a html table through php with the data in it?
Wrap a div around the table with the following css
div{
height: 300px, // or another height
overflow: scroll
}
1
solved Scrollable PHP Table [closed]