I want button control to display instead of anchor tag, so that I am able to set some css to that button.
here what I tried:
if ($number >= 1) {
echo "<a href='pagination2.php?page=" . ($number - 1) . "'>Prev </a>";
}
but I want to display button instead of anchor tag. How to do that?