Thread: Pet description
View Single Post
  #2  
Old 04-04-2010, 06:34 AM
Tequila's Avatar
Tequila Tequila is offline
The Grim One
 
Join Date: Jan 2009
Location: Souther Tier, New York State
Posts: 1,356
Gender: Female
Credits: 100,661
Tequila is on a distinguished road
Default RE: Pet description

First find
PHP Code:
//If we can adopt the adoptable, show the image and adoption link... 
Then place this code in the adopt page:
PHP Code:
$article_content $article_content."
<a href='adopt.php?id="
.$aid."'><img src='".$eggimage."' border='0'></a><br /> ".$description."&nbsp;&nbsp;";

    if(
$isloggedin == "yes"){
    
$article_content $article_content."&nbsp;";
    }
    else{
    
$article_content $article_content."<p><b>".$guesterror."</b></p>";
    } 
Should work after that.
Reply With Quote