Advertisement
Guest User

Untitled

a guest
Nov 9th, 2011
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.62 KB | None | 0 0
  1. public function profileShow($uid, $num){
  2.             require('conn.php');
  3.             $result = mysql_query("SELECT * FROM achiv WHERE uid='{$uid}'");
  4.             $i = 0;
  5.             $stop = 0;
  6.            
  7.             while($row = mysql_fetch_array($result))
  8.                 {
  9.                
  10.                 while($stop == 0)
  11.                     {
  12.                     $i++;
  13.                     if ($i == $num){
  14.                         $stop = 1;
  15.                     }
  16.                     else{
  17.                     $tehid = "a".$i."";
  18.                     if ($row[$tehid] == 1)
  19.                     {
  20.                     $name = $this->achivName($i);
  21.                     $desc = $this->achivDesc($i);
  22.  
  23.                     echo '<i><b>'.$name.'</b></i><br/>';
  24.  
  25.                     echo '<span id="uMad">'.$desc.'</span> '.$i.'/'.$num.'<br/>
  26.                         ';
  27.  
  28.                     }
  29.                    
  30.                     }
  31.  
  32.                     }
  33.                 }
  34. }
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement