View Single Post
  #1  
Old 02-03-2011, 04:31 PM
Tony's Avatar
Tony Tony is offline
I program.
 
Join Date: Jan 2011
Posts: 75
Gender: Male
Credits: 7,964
Tony is on a distinguished road
Default Simple descriptions to adopt.php

Very simple and effective.

PHP Code:
$aid=@mysql_result($result,$i,"id"); //The adoptable's ID
$type=@mysql_result($result,$i,"type");
$description=@mysql_result($result,$i,"description");
$eggimage=@mysql_result($result,$i,"eggimage"); 
add
PHP Code:
$desc=@mysql_result($result,$i,"description"); //the descrption of the pet. TMOD 
find:
PHP Code:
$article_content $article_content."<p><b><u><a href='adopt.php?id=".$aid."'>".$type.":</a></u></b></p> 
add below it:
PHP Code:
<p><b>Description:</b><br />".$desc." </p
Reply With Quote