Following is my code.
In my html file,
<html>
...
<body>
.....
<?php
for($i=1;$i<=$pages;++$i) { ?>
<a href="pagination?pages=" <?php echo $i;?> > <?php echo $i ;?></a>
<?php }
?>
</body>
<html>
the first <?php echo $i;?> can’t work properly , so every page link shows “pagination?pages=”.
What’s the problem here?
you are closing the href=”” to early. Try this: