|
|
|
<%
id=request.querystring("id")
sql="select * from disli_imalati where kimlik=" & id
kk.open sql,conn
%>
|
<%=kk.fields("haber_baslik")%>
<%if kk.fields("resim")<>"" then%>
"> |
<%else%>
|
<%end if%>
<%=replace(kk.fields("icerik"),chr(13)," ")%> |
|
<%
kk.close
id=request.querystring("id")
sql="select top 10 * from guncel_haberler where kimlik<>" & id
kk.open sql,conn,1,3
if kk.recordcount>0 then
%>
Diğer Haberler |
<%
do while not kk.eof
%>
- <%=kk.fields("haber_baslik")%> |
<%
kk.movenext
loop
end if
%>
|
|
|
|