Open your adopt.php
Find
	PHP Code:
	
		
			
             $article_title = "Adopting ".$type;
            $article_content = $langa1."".$type.$langa2;
            $article_content = $article_content."<br><img src='".$eggimage."' border='0'><br>
            <form name='form1' method='get' action='doadopt.php'>
              <p>Adoptable Name: 
                <input name='name' type='text' id='name'>
                <input name='id' type='hidden' id='id' value='".$id."'>
                <input name='promocode' type='hidden' id='promocode' value='".$promocode."'>
              </p>
              <p>
                <input type='submit' name='Submit' value='Adopt Me'>
            </p>
            </form>"; 
		
	
 Replace it with
	PHP Code:
	
		
			
            $article_title = "Adopting ".$type;
            $article_content = "<br><img src='".$eggimage."' border='0'><br>
            <form name='form1' method='get' action='doadopt.php'>
              <p>Adoptable Name: 
                <input name='name' type='text' id='name'>
                <input name='id' type='hidden' id='id' value='".$id."'>
                <input name='promocode' type='hidden' id='promocode' value='".$promocode."'>
              </p>
              <p>
                <input type='submit' name='Submit' value='Adopt Me'>
            </p>
            </form>";