高手帮忙 怎么把这个asp过程 写成php函数 方便调用
<%sub jbxxx(zhi,neirong)
set rs=server.CreateObject("adodb.recordset")
exec="select * from jbxx where id="&zhi
rs.open exec,conn,1,1
response.Write(rs(neirong))
rs.close
set rs=nothing
end sub
%>
这个在asp里面 可以调用不同的ID值
我想在php里面 用函数怎么写 怎么调用 请高手帮忙写出来