Splitting table data to pages with numbers

Why don’t you use another variable name?
For example: ?pagenum=….

And then on your code you would read that variable:

$start = isset( $_GET['pagenum'] ) ? intval( $_GET['pagenum'] ) : 1;