复制内容到剪贴板 程序代码
<ul>{dede:arclist row='6' titlelen='60' orderby='pubdate' typeid='1' idlist='' channelid='1'}
<li>
[field:global name=autoindex/]
[field:global name=autoindex runphp="yes"]@me=@me+5;[/field:global]
[field:global name=autoindex runphp="yes"](@me%2==0)? @me="|":@me="";[/field:global][field:textlink/]
[field:global name=autoindex runphp="yes"](@me!=8)? @me="|":@me="";[/field:global]
<li>
[field:global name=autoindex/]
[field:global name=autoindex runphp="yes"]@me=@me+5;[/field:global]
[field:global name=autoindex runphp="yes"](@me%2==0)? @me="|":@me="";[/field:global][field:textlink/]
[field:global name=autoindex runphp="yes"](@me!=8)? @me="|":@me="";[/field:global]
意思就是当autoindex等于8时候这个标签为空,否则为“|”。
复制内容到剪贴板 程序代码
</li>
{/dede:arclist}
{/dede:arclist}
Tags: 自增
复制内容到剪贴板 程序代码
set rs = server.createobject("adodb.recordset")
'这里ProdId 是数据库里,你要做自增的字段
sql = "select * from bproduc where ProdId is not null"
rs.cursorlocation = 3
rs.open sql,conn,1,1
if rs.bof and rs.eof then'数据库没有数据,则设为1,暂时存到autoid
autoid=1
else
totalid=rs.RecordCount'有数据,根据数据库记录总数增1存到autoid
'这里ProdId 是数据库里,你要做自增的字段
sql = "select * from bproduc where ProdId is not null"
rs.cursorlocation = 3
rs.open sql,conn,1,1
if rs.bof and rs.eof then'数据库没有数据,则设为1,暂时存到autoid
autoid=1
else
totalid=rs.RecordCount'有数据,根据数据库记录总数增1存到autoid
Tags: 自增