I have used the simple php pagination, but now i have to add some style on my pagination. but i dont know how to add the css style in php variable. Here is my code:
for($number=1;$number<=$messageCount;$number++)
{
echo '<a href="?page=' .$number. '">' .$number. ' </a>';
}
//echo "<br> Current Page: $page";
I want to add the style to $number variable.