I have a dynamic page where I'm trying to check if 2 variable have been passed to it ("rowbegin" and "rowend"), if those variables have not been passed to the page, then I want to assign "rowbegin" a value of "0" and "rowend" a value of "50".
I keep getting the following error:
Undefined index: rowbegin in threads5.php on line X
Below is my code:
<?php
$_GET["rowbegin"];
$_GET["rowend"];
if (is_null("rowbegin")) {
$rowbegin = 0;
$rowend = 50;
}
?>