View Single Post
  #7  
Old 09-24-2010, 12:42 PM
vexel vexel is offline
Member
 
Join Date: Aug 2010
Posts: 23
Credits: 3,348
vexel
Default RE: how to change background of siggy?

Thx :*
You are very helpfu person :*
I like you:)
If i find solution i'll write it here;d[hr]
Quote:
Originally Posted by vexel
Thx :*
You are very helpfu person :*
I like you:)
If i find solution i'll write it here;d

PHP Code:
$query mysql_query("SELECT * FROM ".$prefix."owned_adoptables WHERE owner='$loggedinname' ORDER BY aid asc");

// Our code to determine if we show the table or not...



$article_content $article_content."<br><table width='530' border='1' bordercolor='#CCCCCC' rules=rows frame=hsides><tr><td></td><td></td></tr><tr>";

while(
$wiersz=mysql_fetch_array($query))
{

$aid $wiersz['aid'];
$name $wiersz['name'];
$currentlevel $wiersz['currentlevel'];
$totalclicks $wiersz['totalclicks'];

$image getcurrentimage($aid);

$article_content $article_content."<td><div align='center'><a href=levelup.php?id=".$aid."><img src='".$image."' border=0></a>
<td><div align='left'>
<b> - "
.$name."</b><br>
<i>Current Level:</i> "
.$currentlevel."<br>
<i>Total Clicks:</i> "
.$totalclicks."<br>
<b><a href='myadopts.php?act=manage&id="
.$aid."'>More info</a></b>
<td><div align='left'>
</div></td></div></td>"

}

$article_content $article_content."</tr></table>"
Ok, so it work !!

There aren't duplicate characters :D[hr]
BUT... now the table doesn't work :|

please, help me with it ;)
Reply With Quote