xyn Posted July 19, 2006 Share Posted July 19, 2006 Hi,I've got a view profile script, there is two problems I am having. One of them is this:Reputation: Array.And the other problem is I wanted to check the accounts database to seeif the member wants other members to email them, if they Do I wanted theemail icon and link to apear, However It shows the icon at the top of the pagewhich is the start of the script, :\ confused...my code is:[code=php:0]include "../db.php"; $top = mysql_query("SELECT rank,rep,mem_mail,id FROM accounts WHERE user='$act'"); while( $vdat = mysql_fetch_array($top)) { $usrank = $vdat[0]; $usrep = $vdat[1]; $usrmail = $vdat[2]; $actid = $vdat[3]; if( $usrmail == 1 ){ $mem_mail = "<a target=frame href=../Email.php?id='.$actid.'><img src=../images/email.PNG></a>"; } else { $mem_mail = ""; } } $gx = mysql_query("SELECT * FROM profile WHERE user='$act'"); while( $bdat = mysql_fetch_row($gx)) { echo '<font face="Verdana" size="1" color="#54A800"> Reputation:</font></b></td> <td width="50%" height="20"> <font face="Verdana" size="1" color="#FFFFFF">'.$usrep.'</font>'; }[/code] Link to comment https://forums.phpfreaks.com/topic/15063-2-problems/ Share on other sites More sharing options...
xyn Posted July 19, 2006 Author Share Posted July 19, 2006 Update: I realised the array i forgot "MYSQL_NUM" although the otherone is a baffle. Link to comment https://forums.phpfreaks.com/topic/15063-2-problems/#findComment-60583 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.