View Single Post
  #13  
Old 02-12-2013, 11:43 PM
Kamalya's Avatar
Kamalya Kamalya is offline
Member
 
Join Date: Jan 2013
Posts: 48
Gender: Female
Credits: 5,795
Kamalya is on a distinguished road
Default

Ill edit this in a second with my code and SS of my database, its not a big change to the core script at all.

Okay first in your MYSQL make sure you create a new table in your adopts_levels I called mine Descriptions: http://i46.tinypic.com/25zph1h.png

Then you will be able to add descriptions to the inside of the table like this:http://i49.tinypic.com/nvaxkp.png

After that you want to make sure your myadopts.php and levelup.php have the right fields in them so it can insert it into the table:
myadopts.php should look like this:

Code:
				// Determine what to show for next level:

				if($nextlevelexists == "true" and $nextlevel != ""){
					// See how many more clicks to go
					$ctg = $requiredclicks - $row->totalclicks;
					$nloutput = "{$nextlevel}<br /><b>Clicks Till Next Level:</b> {$ctg}";
				}
				else $nloutput = "Max Level";

				$article_title = "<center>{$row->name}</center>";
				$article_content = "<center><img src='{$image}'></center><br /><br />
									<font size='2px'><u><a href='myadopts.php?act=manage&id={$row->aid}'>Actions</a></u>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href='myadopts.php?act=bbcode&id={$row->aid}'><u>Show HTML/BBCode Links</u></a><br />
									<b>Name:</b> {$row->name} &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>Owner:</b> {$owned_adoptables->owner}<br />
									<b>Race:</b> {$row->type}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>Total Clicks:</b> {$row->totalclicks}<br />
									<b>Gender:</b> <img src='picuploads/{$row->gender}.png'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>Current Level:</b> {$row->currentlevel}<br />
									<b>Trade Status:</b> {$row->tradestatus}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <b>Next Level:</b> {$nloutput}<br /><br /></font>";


//Description
$article_content .= "<center><font size='2px'>{$levels->descriptions}<br /><br />Terran Dragons are much the same as the dragons of legend on Earth, except for the fact Terran Dragons did not go extinct. It is not uncommon for them to be bred for transportation and farm usage. Dragons are large serpentine or reptilian creatures. There are several types of dragons ranging from the smaller drake to the large Western Dragon. When it is time for dragons to be bred they are led by their handler to the Breeding Grounds where the eggs are left for other Terran's to raise and take care of them, these eggs range from the most common pest to the rarest ones owned by the leaders of Terra.</font></center>";
The {$levels->descriptions} is all you need for it to insert it into your page.

For yours I took a look and I think this is the problem :
Code:
 $table->buildtable(array("<img src='picuploads/{$adopt->gender}.png'>", "<em>{$adopt->name}</em> the {$adopt->type}", "<a href='myadopts.php?action=manage&id={$adopt->aid}'><img src='{$image}'></a>", $adopt->totalclicks, $level->description),
should be :
Code:
 $table->buildtable(array("<img src='picuploads/{$adopt->gender}.png'>", "<em>{$adopt->name}</em> the {$adopt->type}", "<a href='myadopts.php?action=manage&id={$adopt->aid}'><img src='{$image}'></a>", $adopt->totalclicks,"{$levels->description}"),
__________________

Last edited by Kamalya; 02-12-2013 at 11:57 PM.
Reply With Quote