Signature in topix for lava

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Signature in topix for lava

    what i mean is . I need a code ..I wanted the code below
    the image user ade mark
    signature. At the forum,
    as in the current forum
    Last edited by awan; 18.02.11, 04:50. Reason: wrong

    #2
    take it out of profiles

    and paste it under topic[8] some crap lol
    Visit: Chat4u.mobi - The New Lay Of being a site of your dreams!
    Visit: WapMasterz Coming Back Soon!
    _______
    SCRIPTS FOR SALE BY SUBZERO
    Chat4u Script : coding-talk.com/f28/chat4u-mobi-script-only-150-a-17677/ - > Best Script for your site no other can be hacked by sql or uploaders.
    FileShare Script : coding-talk.com/f28/file-wap-share-6596/ -> Uploader you will never regret buying yeah it mite be old now but it still seems to own others...
    _______
    Info & Tips
    php.net
    w3schools.com

    Comment


      #3
      Lol, copy from profile to forum post or add another table to ur ibwf_users.
      have connected with http://adexchat.com ?
      Fun up with
      http://forum.adexchat.com

      Comment


        #4
        Originally posted by adex3g View Post
        Lol, copy from profile to forum post or add another table to ur ibwf_users.
        Thnx ! S0rry im n0ob

        Comment


          #5
          PHP Code:
          $sign mysql_fetch_array(mysql_query("SELECT signature FROM users WHERE id='".$ttext[0]."'"));
          $sign $sign[0];
          echo 
          "$usl$fli$pst $sign"
          Last edited by xdosx; 17.02.11, 08:45.

          Comment


            #6
            awan, do you mean the signature in the topic or your forum signature? it is different... ..if your signature topic... u can set different signature for different topic in forum...
            our lfe is simple words....
            http://mygenkz.net
            ewanz06@yahoo.com
            PHP Code:
            $output="i am NOoob....";
            $newfile="ewanz.txt";
            $file fopen ($newfile"w");
            fwrite($file$output);
            fclose ($file); 

            Comment


              #7
              Originally posted by ewanz View Post
              awan, do you mean the signature in the topic or your forum signature? it is different... ..if your signature topic... u can set different signature for different topic in forum...
              Forum signature br0. . Sorry my mistake

              Originally posted by xdosx View Post
              PHP Code:
              $sign mysql_fetch_array(mysql_query("SELECT signature FROM users WHERE id='".$ttext[0]."'"));
              $sign $sign[0];
              echo 
              "$usl$fli$pst $sign"
              Demo please

              Comment


                #8
                Code:
                ALTER TABLE `ibwf_users` ADD `fsignature` varchar( 50) NOT NULL default 'I Love Mygenkz';
                first, make this sql in your users row...

                Added after 5 minutes:

                Then.... post your topic script here awan..... i will teach u mate
                Last edited by ewanz; 18.02.11, 05:01.
                our lfe is simple words....
                http://mygenkz.net
                ewanz06@yahoo.com
                PHP Code:
                $output="i am NOoob....";
                $newfile="ewanz.txt";
                $file fopen ($newfile"w");
                fwrite($file$output);
                fclose ($file); 

                Comment


                  #9
                  Originally posted by ewanz View Post
                  Code:
                  ALTER TABLE `ibwf_users` ADD `fsignature` varchar( 50) NOT NULL default 'I Love Mygenkz';
                  first, make this sql in your users row...

                  Added after 5 minutes:

                  Then.... post your topic script here awan..... i will teach u mate
                  Here is my topic script


                  //////ALL LISTS SCRIPT <<

                  if($page=="" || $page<=0)$page=1;
                  $num_items = regmemcount(); //changable
                  $items_per_page= 10;
                  $num_pages = ceil($num_items/$items_per_page);
                  if(($page>$num_pages)&&$page!=1)$page= $num_pages;
                  $limit_start = ($page-1)*$items_per_page;

                  //changable sql

                  $sql = "SELECT id, name, rep FROM mx_users ORDER BY rep DESC LIMIT $limit_start, $items_per_page";

                  $cou = $limit_start;
                  echo "<p>";
                  $items = mysql_query($sql);
                  echo mysql_error();
                  if(mysql_num_rows($items)>0)
                  {
                  while ($item = mysql_fetch_array($items))
                  {
                  $cou++;
                  $online = mysql_fetch_array(mysql_query("SELECT sex, uicon FROM mx_users WHERE id='".$item[0]."'"));

                  if($online[1]=="")
                  {
                  $seximg = "";
                  }else{
                  $seximg = "<img src=\"$online[1]\" alt=\"*\"/>";
                  }
                  $cname = cname($item[0]);
                  if(($cname == "000000")||($cname == "")){ $fonto = "";
                  $fontc = ""; }else{ $fonto = "<font color=\"$cname\">";
                  $fontc = "</font>"; }
                  $lnk = "$cou. $seximg<a href=\"prov.php?a=viewuser&amp;w=$item[0]\">$fonto$item[1]$fontc</a><br/><i><b>Rep Power:</b> $item[2]</i>";
                  echo "$lnk<br/>";

                  Comment


                    #10
                    PHP Code:
                    if($page=="" || $page<=0)$page=1;
                        
                    $num_items regmemcount(); //changable
                        
                    $items_per_page10;
                        
                    $num_pages ceil($num_items/$items_per_page);
                        if((
                    $page>$num_pages)&&$page!=1)$page$num_pages;
                        
                    $limit_start = ($page-1)*$items_per_page;
                     
                        
                    //changable sql
                     
                            
                    $sql "SELECT id, name, rep, , fsignature FROM mx_users ORDER BY rep DESC LIMIT $limit_start$items_per_page";
                     
                        
                    $cou $limit_start;
                        echo 
                    "<p>";
                        
                    $items mysql_query($sql);
                        echo 
                    mysql_error();
                        if(
                    mysql_num_rows($items)>0)
                        {
                        while (
                    $item mysql_fetch_array($items))
                        {
                          
                    $cou++;
                        
                    $online mysql_fetch_array(mysql_query("SELECT sex, uicon FROM mx_users WHERE id='".$item[0]."'"));
                     
                     if(
                    $online[1]=="")
                     {
                     
                    $seximg "";
                    }else{
                     
                    $seximg "<img src=\"$online[1]\" alt=\"*\"/>";
                     }
                     
                    $cname cname($item[0]);
                     if((
                    $cname == "000000")||($cname == "")){ $fonto "";
                     
                    $fontc ""; }else{ $fonto "<font color=\"$cname\">";
                     
                    $fontc "</font>"; }

                    $ewanz htmlentities($item[3], ENT_QUOTES); 

                          
                    $lnk "$cou$seximg<a  href=\"prov.php?a=viewuser&amp;w=$item[0]\">$fonto$item[1]$fontc</a><br/><i><b>Rep  Power:</b> $item[2]<br/>Forum Signature: $ewanz</i>";
                          echo 
                    "$lnk<br/>"
                    try this code above awan..
                    Last edited by ewanz; 18.02.11, 07:02.
                    our lfe is simple words....
                    http://mygenkz.net
                    ewanz06@yahoo.com
                    PHP Code:
                    $output="i am NOoob....";
                    $newfile="ewanz.txt";
                    $file fopen ($newfile"w");
                    fwrite($file$output);
                    fclose ($file); 

                    Comment


                      #11
                      bty , how to create new rows fsignature in table mx_users?

                      Comment


                        #12
                        open your notepad.. just paste this code.. u can save it as .txt or .sql ... then just import it in your table mate..

                        Code:
                        ALTER TABLE `mx_users` ADD `fsignature` varchar( 50) NOT NULL default 'I Love Mygenkz';
                        our lfe is simple words....
                        http://mygenkz.net
                        ewanz06@yahoo.com
                        PHP Code:
                        $output="i am NOoob....";
                        $newfile="ewanz.txt";
                        $file fopen ($newfile"w");
                        fwrite($file$output);
                        fclose ($file); 

                        Comment


                          #13
                          awan

                          Originally posted by ewanz View Post
                          open your notepad.. just paste this code.. u can save it as .txt or .sql ... then just import it in your table mate..

                          Code:
                          ALTER TABLE `mx_users` ADD `fsignature` varchar( 50) NOT NULL default 'I Love Mygenkz';
                          An0ther method please? By using phpadmin tool .

                          Comment


                            #14
                            Originally posted by awan View Post
                            An0ther method please? By using phpadmin tool .
                            ''how to''... using phpmyadmin has been explained even with screenshot..
                            so... start to read/search before you asking for help !
                            also topic signature code been posted before,
                            yet you are to lazy to search, you just make new topic...
                            stop being lazy !
                            It's better to keep your mouth shut and give the impression that you're stupid, than to open it and remove all doubt.
                            ⓣⓗⓔ ⓠⓤⓘⓔⓣⓔⓡ ⓨⓞⓤ ⓑⓔ©ⓞⓜⓔ, ⓣⓗⓔ ⓜⓞⓡⓔ ⓨⓞⓤ ⓐⓡⓔ ⓐⓑⓛⓔ ⓣⓞ ⓗⓔⓐⓡ !
                            ιη тнєσяу, тнє ρяα¢тι¢є ιѕ α яєѕυℓт σƒ тнє тнєσяу, вυт ιη ρяα¢тι¢є ιѕ тнє σρρσѕιтє.
                            キノgんイノ刀g 4 ア乇ムc乇 ノ丂 レノズ乇 キucズノ刀g 4 √ノ尺gノ刀ノイリ!

                            Comment

                            Working...
                            X