| |
|
|
|
<% if not session("username")="" then %>
|
<%
if not session("petitemid")="" then
set rsp =Server.CreateObject("adodb.recordset")
rsp.open "SELECT UserPetTable.userpetName, PetTable.petName, UserPetTable.energylevel, PetTable.smallimg FROM PetTable INNER JOIN UserPetTable ON PetTable.petId = UserPetTable.petId WHERE (((UserPetTable.userPetId)=" & session("petitemid") & "));",conn
if not rsp.eof then
%>
" width="34" height="34"> |
| Pet Name |
<%=rsp("userpetname")%> |
| Pet Type |
<%=rsp("petname")%> |
| Energy Level |
<%=rsp("energylevel")%> |
|
<%end if
end if
%> |
| |
<% end if %>
|