生成相同的行更改整数PHP

时间:2014-03-25 05:02:20

标签: javascript php xml

我想制作我的网站的站点地图,它有成千上万的静态页面,如ID?=1,所以我决定制作自动生成这些链接的php脚本

或者你知道我怎么能这样做吗

我的网站页面就像

http://example.com/index.php?pn=4
http://example.com/index.php?pn=5 
.
.

现在我想一次又一次地粘贴相同的行,但在=

之后更改数字

1 个答案:

答案 0 :(得分:0)

试试这个:

<?php

for($i=0;$i<=6;$i++) { // changes the value of 6 according to your needs

echo '<p><a href="http://example.com/index.php?pn='.$i.'">http://example.com/index.php?pn='.$i.'</a></p>';

} ?>