[Solved] Scrollable PHP Table [closed]

[ad_1]

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

[ad_2]

solved Scrollable PHP Table [closed]