06.02.2017, 21:37
Give your table a height (like for example 600px) and add the follow to your <table> tag:
The CSS way:
PHP код:
<table style="height: 600px; overflow-y: auto;">
....
</table>
PHP код:
table {
height: 600px;
overflow-y: auto;
}