|
<%if request("f") = 1 then
Response.Write("You don't have sufficient amount of money to buy food.")
end if
%>
|
INSTRUCTIONS
First select your pet from the pulldown menu in the middle. To browse through the different types of food just click on the image or link for that food.
Make sure to keep your Mucho Pets healthy. If a pets hunger level reaches 100, they may run away for good.
Check back often as new Mucho Foods are added
regularly!!!
|
|
|
|
|
|
<%
if not session("petitemid")="" then
set rsp =Server.CreateObject("adodb.recordset")
rsp.open "SELECT UserPetTable.hungerlevel,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")%> |
| Hunger Level |
<%=rsp("hungerlevel")%> |
| Energy Level |
<%=rsp("energylevel")%> |
|
<%end if
end if
%>
|
|