i put with some problems the chapel function in my italian wapdesire xhtml version, i think
it's workin'right now..
but i would need a code to put on index.php ,on viewuser action,
saying, for exemple,:
questo utente fa COPPIA PEOPLEIANA con:
(this user is married with)
i tried to do by myself this but not works right..
i do a disaster code ehm..
it's workin'right now..
but i would need a code to put on index.php ,on viewuser action,
saying, for exemple,:
questo utente fa COPPIA PEOPLEIANA con:
(this user is married with)
i tried to do by myself this but not works right..
Code:
//////////couple adv.
$we = mysql_fetch_array(mysql_query("SELECT who, partner, accept, req FROM couple WHERE who='".$uid."'"));
if($we[2]=='1')
{
$wer = getnick_uid($we[1]);
echo "<br/><img src=\"../images/Heart.gif\" alt=\"\"/><br/>";
echo "questo utente fa COPPIA PEOPLEIANA con: $wer!<br/>";
}
//////end
Comment