Users Signature

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Users Signature

    Users Signature in viewtpc under users name
    whats wrong with this code
    its not displaying Signature

    Code:
      $nopl = mysql_fetch_array(mysql_query("SELECT signature FROM ibwf_users WHERE id='".$who."'"));
      $sign = parsemsg($nopl[0], $sid);
      echo "[b]Info:[/b] $sign
    ";

    #2
    Users Signature in viewtpc under users name
    whats wrong with this code
    its not displaying Signature

    Code:
      $nopl = mysql_fetch_array(mysql_query("SELECT signature FROM ibwf_users WHERE id='".$who."'"));
      $sign = parsemsg($nopl[0], $sid);
      echo "[b]Info:[/b] $sign
    ";
    [/b]
    find this code in viewtpc
    Code:
     echo "$usl: $fli$pst $topt
    ";
        $dtot = date("d-m-y - H:i:s",$ttext[2]);
        echo $dtot;
        echo "
    ";
    replace this code to show users' signature like the code given below
    Code:
     echo "$usl: $fli$pst $topt
    ";
        $dtot = date("d-m-y - H:i:s",$ttext[2]);
        echo $dtot;
        echo "
    ";
    $nopl = mysql_fetch_array(mysql_query("SELECT signature FROM ibwf_users WHERE id='".$ttext[0]."'"));
      $sign = parsemsg($nopl[0], $sid);
      echo "[b]Info:[/b] $sign
    ";

    Comment


      #3
      thanks a lot (smiles)

      its working

      Comment


        #4
        hi lve tryd to do this on my site but all lm gettin is this.............

        testing 1 2 3 *
        13-06-08 - 20:40:18
        Info:


        could u help me out plz n thankz

        Comment


          #5
          hi lve tryd to do this on my site but all lm gettin is this.............

          testing 1 2 3 *
          13-06-08 - 20:40:18
          Info:
          could u help me out plz n thankz[/b]
          coz the user's signature field is empty

          Comment

          Working...
          X